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
IF AVG > 83 THEN
GRADE = “B”
ELSE
GRADE = “P”
ENDIF
ENDIF


```

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

b) B

Computer Science & Information Technology

You might also like to view...

You can only pin a program that is already running to the Taskbar

Indicate whether the statement is true or false

Computer Science & Information Technology

Which of the following Nmap commands sends a SYN packet to a computer with the IP address 193.145.85.210? (Choose all that apply.)

a. nmap -sS 193.145.85.210 b. nmap -v 193.145.85.210 c. nmap -sA 193.145.85.210 d. nmap -sF 193.145.85.210

Computer Science & Information Technology