XManidhar KarnatakamProvide the reason why the below output differs?
Integer a=10;
Integer b=10;
System.out.println(a==b);
Integer k=1000;
Integer j=1000;
System.out.println(k==j);
XNirmal Dharawhat will be the out put
public class EasyMath {
public static void main(String arg[]){
System.out.println( 1234 + 432l);
System.out.println( 0123 + 3210);
}
}- No Questions







public class EasyMath {
public static void main(String arg[]){
System.out.println( 1234 + 432l);
System.out.println( 0123 + 3210);
}
}