Given the following pseudocode, what value of GRADENUM can be input to output a grade of “B”?

```
Start
Read GRADENUM
CASENTRY GRADENUM
CASE 90 ? GRADENUM ? 100
GRADE = “A”
CASE 80 ? GRADENUM ? 90
GRADE = “B”
CASE 70 ? GRADENUM ? 80
GRADE = “C”
CASE 60 ? GRADENUM ? 70
GRADE = “D”
CASE other
GRADE = “F”
ENDCASE
Write GRADE
Stop

```

a) 80
b) 90
c) less than 80
d) greater than 90

a) 80

Computer Science & Information Technology

You might also like to view...

A list style behaves as either a character style or a paragraph style based on the selection

Indicate whether the statement is true or false

Computer Science & Information Technology

Which of the following steps in incident response procedures entails of the incident and identification of knowledge gained that can be applied to future handling of incidents?

A. Recovery procedures B. Escalation and notification C. Reporting D. Lessons learned

Computer Science & Information Technology