Chapter 2 Quiz: Control Flow 5 questions · 70% to pass 1. What is the result of 5 > 3 and 2 < 1? True False Error None 2. How many times will this loop run? for i in range(3): 2 3 4 Infinite 3. What does the 'break' keyword do inside a loop? Skips the current iteration Exits the loop entirely Restarts the loop Does nothing 4. An elif block requires a matching if before it. True False 5. Which loop is best when the number of iterations is unknown? for while if def Submit Quiz Back to Chapter Back to Chapter Dashboard