Which statement is used to skip the execution of the current iteration and start the next iteration in a loop?
Which statement is used to skip the execution of the current iteration and start the next iteration in a loop?
Explanation
Continue skips the rest of the current loop iteration and jumps to the next one. It’s useful when you want to ignore certain values without stopping the loop. The loop keeps running but skips some processing.
Skip and next aren’t standard programming terms. Jump statements include break and return. Continue specifically handles loop control.
Use continue to filter out unwanted items while processing. The loop continues but skips code for specific conditions.