Home Tutorial Java Scjp Part6 SCJP Module-6 Question-22

 
 

SCJP Module-6 Question-22
Posted on: July 15, 2010 at 12:00 AM
The program code given below will Check your knowledge of handling Exception in Java.

Given below the sample code :

class main{
try {
int a= Integer.parseInt("three");
}
}

Which exception could be handeled by the catch block for above ?

1.  ClassCastException

2.   IllegalStateException

3.   NumberFormatException

4.  IllegalArgumentException

5.  ExceptionInInitializerError

6.  ArrayIndexOutOfBoundsException


Answer

(3) & (4)

Explanation

Above code throws "NumberFormatException" ." IllegalArgumentException" is its superclass.

Related Tags for SCJP Module-6 Question-22:


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.