11. try { 12. int x = 0; 13. int y = 5 / x; 14. } catch (Exception e) { 15. System.out.println(“Exception”); 16. } catch (ArithmeticException ae) { 17. System.out.println(“Arithmetic Exception”); 18. } 19. System.out.println(“finished”);
Show comments for this question (1) Add comments Link to this question