Analyze the use of logical AND operator in the following code:
int a = 10, b = 20; boolean check = a > 5 && b < 25;
Syntax error in the logical operation
The expression checks if a is less than 5
check is false
check is true