If the variable named AVG has a value of 73, what is the value of GRADE after the instructions corresponding to the following pseudocode are executed?
```
IF AVG > 93 THEN
GRADE = “A”
ELSE
IF AVG > 83 THEN
GRADE = “B”
ELSE
GRADE = “P”
ENDIF
ENDIF
```
a) A
b) B
c) P
d) none of the above
c) P
Computer Science & Information Technology
You might also like to view...
When setting a screen saver, a reasonable amount of time for most users would be ________
A) 60 seconds B) 120 minutes C) 10 minutes D) 1 minute
Computer Science & Information Technology
When you want to read data from a text file, you create a file object using the ____________.
a. Stream Reader class b. Text Reader class c. Buffered Reader class d. Input Reader class
Computer Science & Information Technology