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...
A(n) ________ is a box that surrounds text and indicates that the text is formatted as a placeholder
Fill in the blank(s) with correct word
The newline escape sequence is ____.
a. \l b. \r c. \n d. \t
The row level above the row you are working with in a PivotTable is the ________ row.
Fill in the blank(s) with the appropriate word(s).
Answer the following statements true (T) or false (F)
1. An inheritance chain of any desired length is possible. 2. The class D inherits from base class B using public inheritance. The class B has public member function f(), but the derived class has no function member with this signature. The f() is not available to an object of class D. 3. Deriving a class from a base class requires serious changes to the base class. 4. We can assign a base class object to a derived class variable.