- What is looping control flow allowing us to do?
- Looping control allows us to go back into some point in our program and repeat it with the current program state
- Describe what “loops” do in your own words.
- Loops allow us to have either parts of the our program or the entire program repeat on its own rather than us adding the same statements over and over again so the output can occur for x amount of times
- What is the difference between while and do-loops?
- Do-loops differ form while loops because a do-loop always executes its body at least once and it starts testing whether it should stop only after the first execution
- What is indentation?
- Indentation is used for structuring purposes. This way blocks of code are able to stand out. Additionally it helps with organizational purposes.