Answer:

What statement determines the lowest number of the range?

Statement 1, the first LET statement.

What statement determines the highest number of the range?

Statement 2, the first DO WHILE statement.

A Range of Integers

Here, for example, is a program with yet another start. Notice that the name of the variable has been changed. This is fine.

' Loop with a loop condition
'
LET NUM   = 100        'Statement 1

DO WHILE NUM <= 105    'Statement 2
  PRINT NUM            'Statement 3
  LET NUM = NUM + 1    'Statement 4
LOOP 

END

QUESTION 18:

What will this new program print on the monitor screen? Think carefully about the very first number. If you get that right, the rest should come easily.