0 / 60 seg.

Consider this Java code with multiple conditions in an if statement:

int x = 10, y = 20;
if (x > 5 && y < 25) {
    System.out.println("Condition met");
} else {
    System.out.println("Condition not met");
}