I have a question on an assignment that has me confused. The question is how many times does the following loop execute?
For I = 1 to 10
PRINT I
End For (I)
Now I am not sure if this is a trick question or not. I do not see a loop in the above statement, I = 1 to 10, print I would display 1,2,3,4,5,6,7,8,9,10 and then end. I do not see a loop.
Am I out in left field?? Any assistance would be greatly appreciated.