KnowledgeBoat Logo
|

Computer Applications

What is meant by an entry-controlled loop? Which Java loops are entry-controlled?

Java Iterative Stmts

4 Likes

Answer

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

4 Likes


Related Questions