1. What is looping control flow allowing us to do?
It goes back to a point in the code and runs through it again with the new value (result from last run though)
2. Describe what “loops” do in your own words.
repeat an if statement multiple times until a stated point
3. What is the difference between while and do-loops?
‘while’ loops only run and continue to run, while a condition is true. ‘do’ loops are similar but will run through once first and then check whether they have to run again (so will always run through at least once).
4. What is indentation?
It makes it easier for humans to read the code as connected items will be ‘nested’ in a hierarchy.