CBSE Class 12 Computer Science Question 46 of 105

Python Revision Tour — Question 10

Back to all questions
10
Question

Question 10

In a nested loop, a break statement terminates all the nested loops in one go.

Answer

False

Reason — In nested loops, a break statement will terminate the very loop it appears in.