Given the following pseudocode, what value of GRADE will be output if 60 is input?
```
Start
Read GRADENUM
CASENTRY GRADENUM
CASE 61 ? GRADENUM ? 80
GRADE = “A”
CASE 59 ? GRADENUM ? 60
GRADE = “B”
CASE 50 ? GRADENUM < 60
GRADE = “C”
CASE other
GRADE = “No Grade”
ENDCASE
Write GRADE
Stop
```
a) A
b) B
c) C
d) No Grade
b) B
Computer Science & Information Technology
You might also like to view...
A(n) ______form displays the data fields from a variety of database tables, and contains programs that support organizational processes.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology
Embedded styles, which apply to the entire webpage on which they are defined, are defined in the title section of an HTML document.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology