Hi Gugy, I didn't understand the Autoboxing feauture of this below code Integer i = new Integer(1000); int j= 1000; if (i==j) { System.out.println("both are equal for Integer"); } String s = new String("rsr"); String s1="rsr"; if(s==s1) { System.out.println("both are equal FOR String"); } when im trying to run ths code it prints both are equal for Integer and below is ...