Q111
What will be the output of the following Java program? class exception_handling public static void main(String args[]) try int a, b; b = 0; a = 5 / b; System.out.print("A"); catch(ArithmeticException e) System.out.print("B"); finally System.out.print("C");
A.
A
B.
B
C.
AC
D.
BC
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board