What will be the result of this Java code?
int a = 3, b = 5; boolean result = a < b && b > 0;
result is true
Logical error in the code
result is false
Syntax error