What is the result of the following code in Java?
Integer a = 1000;
Integer b = 1000;
System.out.println(a == b);
What is the result of the following code in Java?
Integer a = 1000;
Integer b = 1000;
System.out.println(a == b);
Correct Answer `false`
মোঃ আরিফুল ইসলাম
Feb 20, 2025