If the variable named AVG has a value of 93, what is the value of GRADE after the instructions corresponding to the following pseudocode are executed?

```
IF AVG > 93 THEN
GRADE = “A”
ELSE
GRADE = “B”
ENDIF
IF AVG > 73 THEN
GRADE = “C”
ELSE
GRADE = “F”
ENDIF

```

a) A
b) B
c) C
d) F

c) C

Computer Science & Information Technology

You might also like to view...

The logical operator ________ allows for a single condition to be met for the record to be included in the results

A) AND B) BOTH C) OR D) SELECT

Computer Science & Information Technology

Ribbon tools that are not available when worksheets are grouped will be ________

A) underlined B) grayed out C) italicized D) highlighted

Computer Science & Information Technology