Answer:

1

(However, FOR loops do not need to always count upward by one.)

The Count Changes Automatically

Here is a diagram that shows how the COUNT changes as the program runs:

' Counting Loop---using a FOR
'
'                    values of COUNT changing over time --->
' 
FOR COUNT = 0 TO 2   0        1         2         3
  PRINT COUNT          0         1         2
NEXT COUNT                1         2         3
END

QUESTION 5:

What does the following program print?

' Counting Loop 
FOR COUNT = 1 TO 4
  PRINT COUNT
NEXT COUNT        
END