KnowledgeBoat Logo

Computer Applications

The while statement repeats the execution of a block only when the given condition is:

  1. False
  2. True
  3. 1
  4. 0

Java Iterative Stmts

5 Likes

Answer

True

Reason — The while statement repeats the execution of a block only when the given condition is true.

Answered By

3 Likes


Related Questions