ICSE Class 10 Computer Applications Question 33 of 76

Revising Basic Java Concepts — Question 37

Back to all questions
37
Question

Question 18

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

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