ICSE Class 10 Computer Applications
Question 35 of 76
Revising Basic Java Concepts — Question 39
Back to all questions 39
Question Question 20
What is meant by an exit-controlled loop ? Which Java loops are exit-controlled ?
If a loop tests the condition at the time of exit from the loop, it is called exit-controlled loop. This loop executes at least once even if the condition is false.
do-while loop is an exit controlled loop in Java.