Métodos de Avaliação

There are two tests during the semester (T1 and T2) and an optional project/presentation (P) that can only help increase the final grade (F). The calculation of the final grade is:
                   F = min(T1 * 0.5 + T2 * 0.5 + P*0.1, 20)

Examples:

  • A student has marks of 15 and 16 in the tests and does not submit any project. The final grade is 16:
             min(15*0.5+16*0.5+0*0.1,20) = min(15.5,20) = 15.5  (rounds to 16)
  • A student has marks of 16 and 16 in the tests and 18 in the optional project. The final grade is 18:
             min(16*0.5+16*0.5+18*0.1,20) = min(17.8,20) = 17.8  (rounds to 18)
  • A student has marks of 18 and 19 in the tests and 18 in the optional project. The final grade is 20:
             min(18*0.5+19*0.5+18*0.1,20) = min(20.3,20) = 20