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.
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:
- for
- while
- do-while