Asked by Schyler Molloy on May 17, 2024

verifed

Verified

A ___________ statement terminates the current iteration of a loop.

A) Break
B) Continue
C) Switch
D) Assert

Iteration

Iteration refers to the process of executing a sequence of statements repeatedly, either a fixed number of times or until a certain condition is met, as seen in loops.

  • Comprehend the methods for properly terminating a program or a loop iteration.
verifed

Verified Answer

TS
Tushar Singh

May 21, 2024

Final Answer :
B
Explanation :
The "continue" statement is used to skip the current iteration of a loop and proceed to the next iteration, without terminating the loop entirely.