195k views
2 votes
Specify the statement that provides the most control over iteration in a loop structure.

A for statement.
A while statement.
A break statement.
A range statement.

User Jarede
by
6.1k points

1 Answer

2 votes

Answer:

A break statement.

Step-by-step explanation:

a break statement provides the most control over iteration in a loop structure because it can be used to stop the loop before it has looped through all the items.

User Seaders
by
7.0k points