public class X { <br /> public static void main(String [] args) { <br /> try { <br /> badMethod(); <br /> System.out.print(“A”); <br /> } <br /> catch (Exception ex) { <br /> System.out.print(“B”); <br /> } <br /> finally { <br /> System.out.print(“C”); <br /> } <br /> System.out.print(“D”); <br /> } <br /> public static void badMethod() { <br /> throw new RuntimeException(); <br /> } <br /> } <br /> What is the result? () <p> public class X { <br /> public static void main(String [] args) { <br /> try { <br /> badMethod(); <br /> System.out.print(“A”); <br /> } <br /> catch (Exception ex) { <br /> System.out.print(&l
A、A. AB
B、B. BC
C、C. ABC
D、D. BCD
E、E. Compilation fails.