KnowledgeBoat Logo
LoginJOIN NOW

Computer Applications

What are iteration statements ? Name the iteration statements provided by Java.

Java Iterative Stmts

7 Likes

Answer

The iterative constructs or iteration statements allow a set of instructions to be performed repeatedly until a certain condition is fulfilled. The iteration statements are also called loops or looping statements.

Java provides three iteration statements:

  1. for
  2. while
  3. do-while

Answered By

4 Likes


Related Questions