a. Elaborate the output of the code given below and provide reasons to support your answer: public class DemoException {
Posted: Tue May 24, 2022 8:07 am
a. Elaborate the output of the code given below and provide reasons to support your answer: public class DemoException { public static void main(String args[]) 7 { [5M] System.out.print("A"); int num = 99/0; System.out.print("B"); System.out.print("C"); } finally { } System.out.print("D"); }