Modify the example program immediately preceding these practice problems to count from 0 to 10.

What will be an ideal response?

```
Replace LET n = 6 with LET n = 0
The modified program is:
LET n = 0
DO WHILE n <= 10 OUTPUT n
LET n n + 1
LOOP
```

Computer Science & Information Technology

You might also like to view...

AutoRecovery used to be called AutoSave

Indicate whether the statement is true or false

Computer Science & Information Technology

A while loop tests its condition before performing its statements making it a(n) ____ loop.

A. pretest B. posttest C. failsafe D. infinite

Computer Science & Information Technology