Given the following pseudocode, how many times will module B030 be called?
```
Start
Process B000
DOWHILE not EOF
Process B010
IF condition THEN
Process B020
(ELSE)
ENDIF
ENDDO
Process B020
Process B030
Stop
```
a) 0 or more times
b) exactly 1 time
c) 1 or more times
d) cannot be determined
b) exactly 1 time
You might also like to view...
When you configure Word to always create a backup copy, Word only maintains two instances of the file
Indicate whether the statement is true or false
Write C++ statements to accomplish each of the following:
a) In one statement, assign the sum of the current value of x and y to z and postincrement the value of x. b) Determine whether the value of the variable count is greater than 10. If it is, print"Count is greater than 10." c) Predecrement the variable x by 1, then subtract it from the variable total. d) Calculate the remainder after q is divided by divisor and assign the result to q. Write this statement two different ways.