So-called else if blocks are only executed if the preceding if clause is false and its own condition is true.

What condition might need to be true for the else if block to execute?

See that? We can add as many else if clauses as we want, but we can't have multiple else clauses.

Yikes! Wouldn't that actually mean the else if block does not execute since our x is 5?