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:
- for
- while
- do-while
Answered By
4 Likes
Related Questions
A student incorrectly attempted to produce a random value in the range 1.6 using the expression.
6*(int)Math.random( ) + 1
Correct the error in expression above to get the desired result.
What is the significance of a break statement in a switch statement ?
What is meant by an entry-controlled loop? Which Java loops are entry-controlled?
What is meant by an exit-controlled loop ? Which Java loops are exit-controlled ?