ICSE Class 10 Computer Applications Question 48 of 69

Iterative Constructs in Java — Question 3

Back to all questions
3
Question

Question 3

Which of the following is an exit-controlled loop?

  1. while
  2. do-while
  3. for
  4. None of these
Answer

do-while

Reason — do-while is an exit-controlled loop as the test condition is checked at the end of the loop.