Consider the following method:
public static boolean isEven(int number) {
return number % 2 == 0;
}
Assume that the following code segment appears in a class:
boolean result = isEven(7);
System.out.println("Is 7 an even number? " + result);
What is printed as a result of executing the code segment?