Why is an else statement always after an if statement?

Because the else statement depends on the if statement's conditionThe else statement doesn't come after an if statementBecause we can't write an if statement without an else statementBecause the if statement's code block won't run without the else statement

Because the else statement depends on the if statement's condition.