What is meant by an entry-controlled loop? Which Java loops are entry-controlled?
4 Likes
The loop which tests the condition before entering the loop is called entry-controlled loop. It does not execute if the condition is false.
for and while are entry controlled loops in Java.
Answered By
What is the significance of a break statement in a switch statement ?
What are iteration statements ? Name the iteration statements provided by Java.
What is meant by an exit-controlled loop ? Which Java loops are exit-controlled ?
What is the difference between a while and do-while loop ?