| Author |
Question related to exception
|
Gitesh Ramchandani
Ranch Hand
Joined: Feb 28, 2007
Posts: 274
|
|
Source MinQ -Q31 Consider the code below: void myMethod() { try { fragile(); } catch( NullPointerException npex ) { System.out.println( "NullPointerException thrown " ); } catch( Exception ex ) { System.out.println( "Exception thrown " ); } finally { System.out.println( "Done with exceptions " ); } System.out.println( "myMethod is done" ); } What is printed to standard output if fragile() throws an IllegalArgumentException? a) "NullPointerException thrown" b) "Exception thrown" c) "Done with exceptions" d) "myMethod is done" e) Nothing is printed Ans: B,C,D Doubt: How D. Regards, Gitesh
|
 |
V Gala
Ranch Hand
Joined: Aug 06, 2007
Posts: 113
|
|
|
All the code after the try block is executed after the caught or finally code is executed
|
 |
 |
|
|
subject: Question related to exception
|
|
|