i got this question from a test ... and don't have a clue.It would be helpful if someone could solve this.
Please finish the declaration of variable x below so that the next line prints "false".
public class Reflexive {
public static void main(String[] args) throws Exception {
<typeX> x = <valueX>;
System.out.println(x == x);
}
}