Evaluate the precedence of operators in this code:
int a = 3, b = 5, c = 8; boolean e1 = a < 2 && b >= 5 || c == 8;
e1 is true
e1 is false
Syntax error in expression
e1 causes a runtime error