✪ Choose the correct option.
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 */ {
System.out.print("exception ");
}
System.out.print("finished"); /* Line 24 */
}
}