Chapter 4: Control Flow Chapter 4: Control Flow Fill in the Blanks 1. The if statement in Python is used for ________ . Answer: decision-making 2. The ________ statement executes a block of code when the condition in the if statement is false. Answer: else 3. The elif statement allows checking of ________ conditions. Answer: multiple 4. A for loop iterates over a ________ . Answer: sequence 5. The while loop executes as long as the ________ remains true. Answer: condition 6. An else block in a loop executes when the loop is ________ . Answer: exhausted 7. A loop can be exited early using the ________ statement. Answer: break True or False 1. The if statement is used f...