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