Iteration

studied byStudied by 5 people
0.0(0)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 7

8 Terms

1

loop

used for when programmers want a statement to execute repeatedly

New cards
2

nested loop

a loop that is found inside a loop

New cards
3

while loop

while the condition is true the loop continues to execute, otherwise it exits the loop

New cards
4

infinite loop

the loop isnā€™t structured correctly, or there is an error in the logic which causes the loop to execute forever

New cards
5

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

New cards
6

definite iteration

loop continues for a known amount of time

New cards
7

indefinite iteration

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

New cards
8

example of until when

n = 0

while n < 10:

n = n+1

print(n, ā€Computersā€)

New cards

Explore top notes

note Note
studied byStudied by 3 people
704 days ago
5.0(1)
note Note
studied byStudied by 5 people
609 days ago
5.0(1)
note Note
studied byStudied by 12 people
41 days ago
5.0(1)
note Note
studied byStudied by 157 people
105 days ago
5.0(3)
note Note
studied byStudied by 26 people
926 days ago
5.0(1)
note Note
studied byStudied by 12 people
893 days ago
5.0(1)
note Note
studied byStudied by 41 people
167 days ago
5.0(2)
note Note
studied byStudied by 24 people
836 days ago
5.0(2)

Explore top flashcards

flashcards Flashcard (27)
studied byStudied by 56 people
405 days ago
5.0(1)
flashcards Flashcard (50)
studied byStudied by 4 people
145 days ago
5.0(1)
flashcards Flashcard (30)
studied byStudied by 34 people
303 days ago
5.0(1)
flashcards Flashcard (22)
studied byStudied by 13 people
11 days ago
5.0(1)
flashcards Flashcard (21)
studied byStudied by 2 people
547 days ago
5.0(1)
flashcards Flashcard (25)
studied byStudied by 17 people
397 days ago
4.0(1)
flashcards Flashcard (26)
studied byStudied by 13 people
556 days ago
5.0(1)
flashcards Flashcard (98)
studied byStudied by 6 people
32 minutes ago
5.0(1)
robot