Given the following pseudocode, how many conditions will be tested if 60 is input?

```
Start
Read GRADENUM
CASENTRY GRADENUM
CASE 60 < 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) 1
b) 2
c) 3
d) 4

c) 3

Computer Science & Information Technology

You might also like to view...

Compressing a picture does not affect the amount of detail in a picture.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

HTML pages are simple, static text documents that browsers read, interpret, and display on the screen.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology