Vidyalelo
Java Programming · Q53

Exceptions

Programming · Java Programming · question 53

Q53

What will be the result if NullPointerException occurs at line 2? try //some code goes here catch(NullPointerException ne) System.out.print("1 "); catch(RuntimeException re) System.out.print("2 "); finally System.out.print("3");

A.
1
B.
3
C.
2 3
D.
1 3
Answer
E.
1 2 3

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board