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