public class Test { <br /> public static void aMethod() throws Exception { <br /> try { <br /> throw new Exception();<br /> } finally { <br /> System.out.println(“finally”); <br /> } <br /> } <br /> public static void main(String args[]) { <br /> try { <br /> aMethod(); <br /> } catch (Exception e) { <br /> System.out.println(“exception”); <br /> } <br /> System.out.println(“finished”); <br /> } <br /> } <br /> What is the result?()  
A、 finally
B、 exception finished
C、 finally exception finished
D、 Compilation fails.