Home Tutorial Java Scjp Part7 SCJP Module-7 Question-7

 
 

SCJP Module-7 Question-7
Posted on: July 14, 2010 at 12:00 AM
The program given below will test your understanding about the Integer class and int class in java.

Given a sample code:

1    class Test {
2    public static void main(String[] args) {
3    Integer i = new Integer(2) + new Integer(3);
4    int j = i + 3;
5    System.out.print(i);
6    System.out.print(" "+j);
}}

What will be the result of above code ?

(A) 5 8
(B) An exception is thrown at runtime.
(C) Compilation fails because of an error on line 3.
(D) Compilation fails because of an error on line 4.

Answer:

(A)

Related Tags for SCJP Module-7 Question-7:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.