CBSE Class 11 Computer Science Question 78 of 80

Conditional and Looping Constructs — Question 9

Back to all questions
9
Question

Question 9

The continue statement skips the current iteration in a loop and causes the next iteration of loop to take place.

Answer

True

Reason — The continue statement in Python is used within loops to skip the rest of the code inside the current iteration and immediately proceed to the next iteration of the loop.