What does this Java code illustrate about short-circuit behavior?
int num = 0; boolean check = false && (num++ > 0);
check is true and num is 1
Logical error in the code
check is false and num is 0
Syntax error in the code