ICSE Class 10 Computer Applications
Question 37 of 76
Revising Basic Java Concepts — Question 41
Back to all questions 41
Question Question 22
How many times is the loop body executed in a do loop, even if the test-condition is false ?
do-while loop is an exit controlled loop. Thus, its body is executed atleast once even if the test-condition is false.