Java - Wrapper Classes
Consider this code:
What is the output and why?
Integer a = 127; Integer b = 127; Integer c = 128; Integer d = 128; System.out.println(a == b); System.out.println(c == d);
What is the output and why?
