What is the purpose of the 'continue' statement in a loop?
A. Skip the loop
B. Exit the program
C. Skip the current iteration
D. Exit the loop
Answer: Option C
Solution (By Examveda Team)
The purpose of the 'continue' statement in a loop is to skip the current iteration and proceed to the next iteration of the loop. When 'continue' is encountered within a loop, it immediately terminates the current iteration and continues with the next iteration, effectively skipping any remaining code within the current iteration's body.So, the correct answer is:
Option C: Skip the current iteration
Join The Discussion