- What is looping control flow allowing us to do?
Looping control flow allows code to execute vertically top to bottom, left to right and if conditions for that loop have not been met to close, that control flow circles back around to the top of the code.
- Describe what “loops” do in your own words.
Loops allow code to compute and execute indefinitely until the parameters of stopping that code are met. This makes it possible to have a reoccurring statement for calculations that would be too long or time-consuming for us to calculate on our own.
- What is the difference between while and do-loops?
A while loop executes continues to execute until the parameters have been met for the code to stop. Do loops are similar but, they examine the code and if they can stop executing, they will at the first chance they get.
- What is indentation?
Indentation is an aesthetic presentation of the code to appear easier to understand. Blocks are indented and create sort of trees of data.