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

 
 

SCJP Module-7 Question-4
Posted on: July 13, 2010 at 12:00 AM
The program given below will test your knowledge about the Integer class and int data types in Java and prepares you for SCJP examination.

Given a sample code:

1    public class Test3 {

2    static void pass(int i) {
    }

3    static void pass(Integer i) {
4    System.out.println(i);
    }

5    public static void main(String[] args) {
6    pass(1);
    }
    }

What will be the result of above code ?

(1) 1
(2) Print nothing
(3) Compile time error at line no 2.
(4) Compile time error at line no 6.

Answer:

(2)

Related Tags for SCJP Module-7 Question-4:


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.