OF
Given:
33. try {
34. // some code here
35. }catch (NullPointerException e1) {
36. System.out.print("a");
37. }catch (RuntimeException e2) { System.out.print("b");
38
} finally { 39.
40. System.out.print("c");
41.}
What is the result if a NullPointerException occurs on line 34?
A. c
B. a
C. ab
D. ac
E. bc
F. abc
Ext 12