Answer:

Use a loop that counts up from 1 to 10.

PRINTing 10 Hellos to the Monitor

Here is one solution to the problem:

' Effusive Greetings
'
PRINT "Hello"
PRINT "Hello"
PRINT "Hello"
PRINT "Hello"
PRINT "Hello"
PRINT "Hello"
PRINT "Hello"
PRINT "Hello"
PRINT "Hello"
PRINT "Hello"
'
END

But a better solution is to use a loop. This loop executes 10 times:

' Do loop body 10 times
'
LET COUNT = 1
DO WHILE COUNT <= 10

  ______________________________________  
  
  LET COUNT = COUNT + 1
LOOP
'
END

QUESTION 2:

Fill in the blank so that the program writes "Hello" ten times.