Iterations Flashcards
What three building blocks create a proper program?
- Sequence
- Selection
- Iteration
What does iteration mean?
To loop or repeat an action within a program
What does a flowchart show?
A flowchart shows the flow of data through the algorithm
What do FOR Loops do?
FOR Loops will repeat the code inside them a
fixed number of times.
What is an Indefinite Loop or ** Condition-Controlled Loop**?
An Indefinite Loop, or Condition-Controlled Loop, continues until a specific condition is met or broken.
What is the only choice of an Indefinite Loop in Python?
A While Loop
What can While Loops be used for?
To Count Up or Down
What is a Nested Loop?
Nested Loops or Iterations are statements that typically have a Loop Within a Loop
How does a Nested For Loop work?
In a Nested For Loop each Iteration of the outer loop causes the inner loop to run until complete.
How can Nested For Loop help save time?
It can save time by preventing you from having to rewrite the code multiple times
How do Loops make your code more Robust?
Less code means, that there are less Coding Errors
AND
If you want to make a change you don’t have to do changes over multiple lines