Answer:

Some Machines that Use Cycles

Perhaps the ultimate example of the usefulness of cycles is the ultimate machine—the wheel.

The DO and LOOP statements

Here is a program that uses a loop:

' Example of a loop
'
DO                        
  PRINT "Type a number"
  INPUT NUMBER
  PRINT "6% of the number is", NUMBER * 0.06
LOOP                     
END

The DO statement marks the beginning of several statements that will be done again and again. The LOOP statement marks the end of those statements. When this program runs this is what happens:

At this point, the statements between DO and LOOP have each executed one time. They are about to execute a second time.

QUESTION 2:

What does the monitor look like at this time?