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