What is the result of the following Java code?
int a = 5, b = 10; boolean result = a > 10 && b < 10;
result is true
result is false
The second condition is evaluated
Runtime error