Given the following pseudocode, what would display if this
pseudocode was coded and executed, given that examGrade = 93 and
homeworkGrade = 87?
If examGrade >= 90 AND homeworkGrade >= 90 Then
Display "You are doing very well!"
Else If examGrade < 90 AND homeworkGrade >= 90 Then
Display "Study harder for the next exam."
Else If examGrade >= 90 AND homeworkGrade < 90 Then
Display "See me for help with homework."
Else
Display "Let's talk about your grades."
End If
Group of answer choices
A. See me for help with homework.
B. You are doing very well!
C. Let's talk about your grades.
D. Study harder for the next exam
Get Answers For Free
Most questions answered within 1 hours.