Loops =1 Flashcards
When the given statement is true/ answer is yes, it’ll run
While loops
When the given statement is false / answer is no, it’ll run
Repeat loops
Runs a set amount of times
For loops
Runs through loop once, then may/may not go again UNTIL statement is true
Repeat loops
Only runs through loops if statement true, may never touch loop, only runs WHILE statement is true
While loops
Runs the amount of times set, may be based on a variable or number
For loops
Statement first, then loop (Pre-test)
While loops
Loop sequence, then statement (Post-test)
Repeat loops
Isn’t used by python
Repeat loops
One entry & exit point in flowchart
All three
Guarded loop
While loops
Unguarded loop
Repeat loops
REPEAT & UNTIL
Repeat loops
WHILE & ENDWHILE
While loops
FOR & ENDFOR
For loops