Answer:

1
2
3

Different Beginnings

Here is the program:

' Loop with a loop condition
'
LET COUNT = 1            'Statement 1

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

END

Statement 1 started COUNT at 1. This is OK. Depending on what you want to do, you can start the counter out at any value.

QUESTION 17:

The program prints out a range of numbers, 1 through 3.

What statement determines the lowest number of the range?

What statement determines the highest number of the range?