Given the following pseudocode, what value of GRADENUM must be input to output a grade of “C”?
```
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) 70 or more
b) 79 or less
c) 80 or less
d) none of the above
d) none of the above
You might also like to view...
When a Microsoft Word file is inserted into an OpenOffice Writer file, Writer inserts a ________ before the inserted document
A) section B) page break C) manual line break D) leader
Answer the following statements true (T) or false (F)
1. Machine language is an example of a high-level language. 2. A CPU only understands machine language instructions. 3. Programs are often referred to as hardware. 4. The CPU is the most important component in a computer because without it, the computer could not run software. 5. The term "bit" stands for binary digit.