KnowledgeBoat Logo
|

Computer Applications

Which of the following is not an entry controlled loop ?

  1. for
  2. do-while
  3. while
  4. none of the above

Java Iterative Stmts

6 Likes

Answer

do-while

Reason — do-while is an exit controlled loop as it executes atleast once even when the condition is false.

Answered By

3 Likes


Related Questions