What happens when Java evaluates an if/else statement?
if
else
The condition is ignored and Java chooses a branch randomly
Both bodies always run in sequence
The if body runs when the condition is true; otherwise the else body runs
The else body runs only when the condition is true