Computer Science for IGCSE & O level - Algorithm Design And Problem Solving (Section 11 - No. 7)
In a typical `FOR...TO...NEXT` loop, what happens after the `NEXT` statement is executed?
The loop ends.
The loop variable is incremented, and the loop starts again.
The program terminates.
The code within the loop is re-executed.
Explanation
NEXT is a directive for what occurs after each iteration of the loop.
Comments (0)
