loops Flashcards
1
Q
FOR loop
A
This will repeat lines of code for a set number of times.
A FOR loop has a definite number of loops.
2
Q
WHILE loop
A
This will keep repeating lines of code until a variable or condition changes. A WHILE loop may loop forever if the condition doesn’t change.