Please finish the declaration of variable x in the bold line below so that the next line prints “false”.
public class Reflexive {
public static void main(String[] args) throws Exception {
<typeX> x = <valueX>;
System.out.prin tln(x == x);
}
}
public class Reflexive {
public static void main(String[] args) throws Exception {
<typeX> x = <valueX>;
System.out.prin tln(x == x);
}
}
Comment