What is the output of the following code?
public class Main { public static void main(String[] args) { boolean even = false; if (even = true) System.out.println("It is even."); } }
Click to view the answer
It is even.