- What is looping control flow allowing us to do?
Looping control flow allows going back to some point in the program to repeat code in current program state
- Describe what “loops” do in your own words.
Loops allow repetition of routine and/or routine of repetition with minimal coding
-
What is the difference between while and do-loops?
-
WHILE: The loop keeps entering statement as long as the expression produces a value that gives true when converted to Boolean.
-
DO: The loop always executes its body at least once, and starts testing whether it should stop only after that first execution
-
-
What is indentation?
Indentation is the process of adding clarity to the program by making code structure stand out, and blocks and control flow obvious by revealing where certain blocks of code ends and others begins