Given a sample code:
1 public class Test {
2 public static void main(String[] args) {
3 Integer in = 1;
4 int i = 1;
5 System.out.print(in.equals(i));
6 System.out.print(in == i);
}}
What will be the result of above code ?
(1) false false
(2) true true
(3) false true
(4) true false
(2)