Given:
public class Main { public static void main(String[] args) { char[] ca = {0x4e, \u004e, 78}; System.out.println((ca[0] == ca[1]) + " " + (ca[0] == ca[2])); } }
What is the result?
E is correct.
The Unicode declaration must be enclosed in single quotes: '\u004e'.
If this were done, the answer would be A.