1. Write the output of these code block without running class TestExcepRoute { public static void main(String [] args)
Posted: Mon Jun 06, 2022 6:14 pm
class TestExcepRoute { public static void main(String [] args) { try { method (): } catch (Exception e) { System.out.print('m'); } System.out.println('n'); } static void createException () { throw new Array IndexOutOfBoundsException(); } static void method () { try { } createException(); System.out.print('a'); } catch (ArithmeticException e) { System.out.print('b'); } finally { } System.out.print('d'); System.out.print('c');