Python – Break, Continue & Pass MCQ

In Python, the break, continue, and pass statements are control flow tools used within loops and conditional structures. The break statement immediately exits the loop, halting its further execution. The continue statement skips the current iteration and moves to the next iteration of the loop. The pass statement is a null operation, serving as a placeholder where code is syntactically required but no action is needed. These statements help manage and control the flow of loops effectively.

9.break,continue pass.docx