1.6k views
1 vote
In an if / else if / else structure, if more than one condition is true, which one executes?

The first condition that is true is the only one that executes.

All of the true conditions execute

All of the true conditions execute, plus the else block

Only the else block would execute.

User Htinlinn
by
6.7k points

1 Answer

4 votes

Answer:

Only the else block would execute.

Step-by-step explanation:

In an if/else if/else structure, only the code block associated with the first true condition will execute. If more than one condition is true, only the code block associated with the first true condition will execute and the rest will be skipped. The else block will only execute if none of the conditions are true.

User Joe Schrag
by
7.9k points