What is the result of the following code in Java?
Integer num1 = 100;
Integer num2 = 100;
System.out.println(num1 == num2);
A. Runtime error
B. Compilation error
C. `true`
D. `false`
Answer: Option C

Join The Discussion