This pseudocode segment is intended to describe
// computing then displaying your average score of
// two classroom tests.
start
input midtermGrade
input finalGrade
midtermGrade + final = totalPoints
average final / 3
output totalPoints
stop



Answer :