Iteration

4.4(5)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/4

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

5 Terms

1
New cards
loop
used for when programmers want a statement to execute repeatedly
2
New cards
nested loop
a loop that is found inside a loop
3
New cards
while loop
while the condition is true the loop continues to execute, otherwise it exits the loop
4
New cards
infinite loop
the loop isn’t structured correctly, or there is an error in the logic which causes the loop to execute forever
5
New cards
for-loop
The condition is first checked to see if it is true, the statement will execute, and the steps will continue to repeat in the loop until the statement becomes false, then the loop ends