Consider the Java code:
Integer i = 3; foo(i); System.out.println("i = " + i); void foo (Integer j) { j++; System.out.println("j = " + j); return; }
Answer