Control Flow Statement: True/False Questions
- An if statement in Python must always end with a colon (:) - True/False
- In Python, the else statement can be used without an if statement. - True/False
- The elif statement allows checking multiple conditions sequentially. - True/False
- Indentation does not matter in control flow statements in Python. - True/False
- The break statement can be used to exit a loop prematurely. - True/False
- The continue statement skips the current iteration and continues with the next iteration of the loop. - True/False
- A while loop in Python executes at least once, even if the condition is False initially. - True/False
- The pass statement can be used as a placeholder in control flow statements. - True/False
- A for loop can only iterate over a list in Python. - True/False
- The else clause in a loop executes only if the loop completes without encountering a break statement. - True/False
Answer Key (True/False):