What is the value of ANSWER after the instructions corresponding to the following pseudocode are executed?
```
COUNT = 1
SUM = 3
DOWHILE COUNT ? 0
SUM = SUM + COUNT
COUNT = COUNT - 1
ENDDO
ANSWER = SUM
```
a) 3
b) 4
c) 5
d) 6
b) 4
Computer Science & Information Technology
You might also like to view...
The 32-bit version of Windows 8.1 requires a minimum of 2 GB of RAM
Indicate whether the statement is true or false
Computer Science & Information Technology
Which of the following should be done to harden a system?
a. Turn off unused services. b. Apply port filtering and close unused ports. c. Apply the latest security patches and fixes. d. All the above.
Computer Science & Information Technology