Iteration
The repetition of a section of code
Give some examples of iteration functions
When to use a for loop
When you want to execute the loop a specified number of times
When to use while loops
Execute the loop while a certain condition is true
What is an infinite loop?
A loop continuing forever and no way to break it
When to use do … until loops?
Execute the loop until a certain condition is true. The condition is tested at the end of the loop