Apply the looping rules to accomplish the specified processing. Assume that the value of the variable n is equal to zero as the loop begins.

Build a DO WHILE loop that repeats the output "Once more around the loop" and provides no way to stop. (This so-called "infinite loop" is one programmers avoid.)


```
DO WHILE n = 0
OUTPUT "Once more around the loop"
LOOP
```

Computer Science & Information Technology

You might also like to view...

Which of the following classes is not used for file input?

a. FileInputStream b. FileReader c. ObjectInputStream d. Formatter

Computer Science & Information Technology

XHTML uses the characters to terminate a(n) ________ block in XHTML

Fill in the blank(s) with correct word

Computer Science & Information Technology

?_____ is the process of drawing a series of increasingly detailed data flow diagrams (DFDs), until all functional primitives are identified.

A. ?Leveling B. ?Balancing C. ?Indexing D. ?Looping

Computer Science & Information Technology

COGNITIVE ASSESSMENT What kind of communications device sends and receives data and information to and from a digital line, such as ISDN and cable?

A. a hub B. a router C. a switch D. a modem

Computer Science & Information Technology