What is the result of the following code in Java?
Integer a = 1000;
Integer b = 1000;
System.out.println(a == b);
A. Runtime error
B. Compilation error
C. `false`
D. `true`
Answer: Option C
Join The Discussion