CBSE Class 11 Computer Science Question 28 of 80

Conditional and Looping Constructs — Question 11

Back to all questions
11
Question

Question 11

What abandons the current iteration of the loop?

  1. continue
  2. break
  3. stop
  4. infinite
Answer

break

Reason — The break statement terminates the current loop, i.e., the loop in which it appears, and resumes execution at the next statement immediately after the end of that loop.