Question: Using the looping concept, what does 4+7+4+7+4+7+4+7+4+7+4+7 simplify to?
Answer (Highlight to reveal): 6(4+7)
Question: What's the difference between a controlled and uncontrolled loop?
Answer (Highlight to reveal): The uncontrolled loop will keep repeating for indefinitely times, whereas the controlled loop will eventually come to a stop.
Question: What are the two main types of controlled loops?
Answer (Highlight to reveal): Do While loop, and Repeat Until loop.
Question: What is the purpose of the Automatic Loop Control?
Answer (Highlight to reveal): The Automatic Loop Control is used to simplify a flowchart that contains repeat-until loops.
Question: What are the three parts to a repeat-until loop and the automatic loop control?
Answer (Highlight to reveal): Initialization, Test, and Incrementation.