SCJP Module-7 Question-2


 

SCJP Module-7 Question-2

The program given below will test your understating about the Integer class and int data types in Java.

The program given below will test your understating about the Integer class and int data types in Java.

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 

Answer:

(2)

Ads