Question: 1) What is the output of the following Java program? public class Eee { public static void main(String [ ] args) { try {
1) What is the output of the following Java program? public class Eee { public static void main(String [ ] args) { try { } } badMethod(); System.out.print("A"); catch (RuntimeException ex) { } System.out.print("B"); catch (Exception ex1) { System.out.print("C"); } finally { System.out.print("D"); } System.out.print("E"); public static void badMethod() { throw new RuntimeException(); } }
Step by Step Solution
3.42 Rating (158 Votes )
There are 3 Steps involved in it
Answer There are syntax errors in the provided code snippet Let me correct them first an... View full answer
Get step-by-step solutions from verified subject matter experts
