0 / 60 seg.

Consider the nested if-else statement in this Java code:

int temp = 30;
if (temp > 25) {
    if (temp > 30) {
        System.out.println("Very hot");
    } else {
        System.out.println("Hot");
    }
} else {
    System.out.println("Comfortable");
}