Answer:

' PRINT "Hello" 10 times
'
LET COUNT = 1
DO WHILE COUNT <= 10
  PRINT "Hello"  
  LET COUNT = COUNT + 1
LOOP
'
END

Two Uses of Statements in a Loop

Examine the program.

The careful combination of these two things PRINTs "Hello" 10 times.

QUESTION 3:

Make a change to the program so that it prints "Hello" 100 times. (It would be nice if you typed in this program into QBasic and ran it to test your answer.)