Given the following pseudocode, what value of GRADENUM can be input to output a grade of “F”?
```
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) 59
b) 60
c) 61 or less
d) none of the above
a) 59
You might also like to view...
Name one of the four things Krug recommends doing to make text more scannable.
What will be an ideal response?
A ________ procedure in VBA is only available to a specific object or module
A) function B) sub C) property D) private
________ errors occur because a formula or function violates correct construction, such as a misspelled function name or illegal use of an operator
Fill in the blank(s) with correct word
All of the following statements are TRUE about improving the readability of VBA EXCEPT:
A) An important aspect of writing VBA is making sure the code is easy to read so that you and others can interpret what is happening. B) You need to take extra steps to keep the code legible and to document what steps you are taking and why. C) Commenting code in VBA is an excellent way of explaining the purpose and the intention of a procedure. D) Lengthy statements become difficult to read, because without pressing Tab, the lines of code will extend continuously to the left.