ICSE Class 10 Computer Applications
Question 8 of 30
Solved 2024 Question Paper ICSE Class 10 Computer Applications — Question 13
Back to all questionsa and b
Reason — An entry-controlled loop checks the loop condition before executing the loop's body. If the condition is false at the start, the loop's body will not execute even once.
for and while loops check the condition before running the loop's body. If the condition is false, the loop won't run. Therefore, they are entry controlled loops.
The body of the do-while loop executes at least once before checking the condition. Hence, it is an exit controlled loop.