What is the value of COUNT after the steps in the following pseudocode are executed?
```
COUNT = 0
TOTAL = 5
PASS = 4
DOWHILE PASS < TOTAL
NEXT = PASS + 1
DOWHILE NEXT ? TOTAL
COUNT = COUNT + 1
NEXT = NEXT + 1
ENDDO
PASS = PASS + 1
ENDDO
```
a) 4
b) 5
c) 10
d) none of the above
d) none of the above
Computer Science & Information Technology
You might also like to view...
What technology is used in touchpads?
A. optical technology B. mechanical motion C. gesture recognition D. capacitance technology
Computer Science & Information Technology
What is the output of the following code?
``` string s("abcdefag"); cout << s.find("def") << " " << s.find("a", 3); ``` a. 0 0 b. 3 0 c. 2 4 d. 3 6
Computer Science & Information Technology