Loops
-Loops control program flow
-They also a set of statements to be executed a number of times
A. Do Loops
-Executes at least once
-Condition is checked before statements are read
-May or may not loop depending on the truth value of the condition
B. For Next Loops
-Executes a set of statements a fixed number of times
-no condition (executes until counter reaches an end number)