What is looping control flow allowing us to do?
- Looping control flow allows us to go back to some point in the program where we were before and repeat it with our current program state.
Describe what “loops” do in your own words?
- Loops repeat a statement as long as a certain criteria is met.
What is the difference between while and do-loops?
- A do loop always executes its body at least once, and it starts testing whether it should stop only after that first execution.
What is indentation?
- Added spaces in front of statements that are part of some larger statement.