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