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