ICSE Class 10 Computer Applications
Question 34 of 76
Revising Basic Java Concepts — Question 38
Back to all questions 38
Question Question 19
What is meant by an entry-controlled loop? Which Java loops are entry-controlled?
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.