Analyze the following code.
boolean even = false;
if (even) {
System.out.println("It is even!");
}
◦ The code is wrong. You should replace if (even) with if (even = true).
◦ The code displays It is even!
◦ The code displays nothing.
◦ The code is wrong. You should replace if (even) with if (even == true).