The following pseudocode

```
IF AVG > 93 THEN
GRADE = “A”
ELSE
IF AVG > 83 THEN
GRADE = “B”
ELSE
GRADE = “P”
ENDIF
ENDIF

```

represents a

a) sequential IFTHENELSE pattern
b) nested IFTHENELSE pattern
c) null IFTHENELSE pattern
d) simple IFTHENELSE pattern

b) nested IFTHENELSE pattern

Computer Science & Information Technology

You might also like to view...

You are formulating a SQL statement to retrieve data from Oracle. Which of the following SQL statements are invalid?

A. select Jersey_No from PLAYERS; B. select NAME, Jersey_No from PLAYERS; C. select NAME,Jersey_No where Jersey_No = 6; D. select * from PLAYERS where Jersey_No = 6;

Computer Science & Information Technology

If you deactivate the Maintain aspect ratio button between the W and H text boxes, any change you make to one will automatically be made to the other.

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

Computer Science & Information Technology