In one `if`, `elif`, `else` chain, both the `if` condition and an `elif` condition are truthy. Which suite executes?
Explanation
The chain selects the first truthy condition, executes its suite, and skips all later alternatives. Running the `elif` suite as well would treat mutually exclusive branches as independent `if` statements.