Computer Science for IGCSE & O level - Algorithm Design And Problem Solving (Section 7 - No. 6)

In the context of a `FOR...TO...NEXT` loop in pseudocode, what is the function of the `NEXT` statement?
To define the loop's exit condition.
To increment the loop counter.
To start the loop iteration.
To end the program.

Explanation

The `NEXT` statement increments the loop counter and returns to the beginning of the loop, for the next iteration.

Comments (0)

Advertisement