What statement determines the lowest number of the range?
Statement 1, the firstLET
statement.What statement determines the highest number of the range?
Statement 2, the firstDO WHILE
statement.
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
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.