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?
- while
- do-while
- for
- None of these
do-while
Reason — do-while is an exit-controlled loop as the test condition is checked at the end of the loop.