0 / 60 seg.

Evaluate the functionality of the if-else structure in this Java code:

int age = 16;
if (age >= 18) {
    System.out.println("You are old enough");
} else {
    System.out.println("You are not adult yet");
}