Quiz 4 - Repetition
what keyword will cause the loop to terminate immediately?
break
what type of lube should we use when you want your loop to iterate at least once?
do while
what type of loop is ideal in situations where the exact number of iterations is known?
for loop
if a loop does not contain within itself a way to terminate it is called...
infinite loop
each repetition of a loop is known as...
iteration
this is a control structure that causes a statement or group of statements to repeat
loop
what variable controls the number of times that the loop iterates?
loop control variable
encounter control the repetition we set the incrementation to any value
true