Which of the following statements tests if students have a grade of 70 or above, as
well as fewer than five absences? (5 points)

if (grade > 70 or daysAbsent <= 5):

if (grade > 70 and daysAbsent <= 5) :

if (grade >= 70 and daysAbsent <= 5):

if (grade >= 70 or daysAbsent <= 5) :



Answer :