80.4k views
2 votes
What are iteration statement? name the iteration statement provide by java


1 Answer

4 votes

Answer:

Iteration statements create loops in the programs. In other words, it repeats the set of statements until the condition for termination is met. Iteration statements in java are for, while and do-while.

The java programming language provides a set of iterative statements that are used to execute a statement or a block of statements repeatedly as long as the given condition is true. The iterative statements are also known as looping statements or repetitive statements.

Step-by-step explanation:

I majored in

User Patlimosnero
by
4.6k points