KnowledgeBoat Logo
|
LoginJOIN NOW

Computer Applications

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

Java Iterative Stmts

3 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

3 Likes


Related Questions