My doubt is about the precedence of short circuit operators.
Classic example of short circuit operator is below.
if(denom != 0 && num/denom > 10 )
Here usage of shorthand operator allows us to prevent division by zero error because num/denom is never executed.
Now My question is Java says '/' operator has higher precedence than '&&' , then how come left side of '&&' is evaluated before '/'.?