Iteration

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/7

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

8 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

6
New cards

definite iteration

loop continues for a known amount of time

7
New cards

indefinite iteration

loop continues for an unspecified number of times, could be forever

8
New cards

example of until when

n = 0

while n < 10:

n = n+1

print(n, ”Computers”)