Đọc đoạn code sau: public class Test { public static void aMethod() throws Exception { try { throw new Exception(); } finally { System.out.println("finally"); } } public static 219/259Đọc đoạn code sau: public class Test { public static void aMethod() throws Exception { try { throw new Exception(); } finally { System.out.println("finally"); } } public static void main(String args[]) { try { aMethod(); } catch (Exception e) { System.out.println("exception"); } System.out.println("finished"); } } Kết quả là gì? Chọn một Câu trả lờifinally exception, finishedfinally, exception, finished Lỗi biên dịch.Giải thíchChọn đáp án C