Answer:

At this point the monitor looks like:

Type a number
? 100
6% of the number is 6

But we are not done, yet.

Same Statements, Executed Again

Here is the example program, again:

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

The statements between DO and LOOP have each been executed once. The variable NUMBER has the value 100 in it:

NUMBER
100

Now the statements inside the loop start again with the first statement after DO:

At this point, variable NUMBER now has the new value of 50 in it:

NUMBER
50

The monitor now shows:

Type a number
? 100
6% of the number is 6
Type a number
? 50
6% of the number is 3

QUESTION 3:

What do you suppose happens next. Have the user enter the number 200.