WHAT WILL BE THE OUTPUT OF THE PROGRAM

27. What will be the output of the program?

public class Test

{

public static void aMethod() throws Exception

{

try /* Line 5 */

{

throw new Exception(); /* Line 7 */

}

finally /* Line 9 */

System.out.print("finally "); /* Line 11 */

}

public static void main(String args[])

try

aMethod();

catch (Exception e) /* Line 20 */

9

System.out.print("exception ");

System.out.print("finished"); /* Line 24 */

}

A.finally

B. exception finished

C. finally exception finished

D.Compilation fails