Vidyalelo
Java Programming · Q78

Exceptions

Programming · Java Programming · question 78

Q78

What will be the output of the following Java code? class exception_handling public static void main(String args[]) try int a = 1; int b = 10 / a; try if (a == 1) a = a / a - a; if (a == 2) int c[] = 1; c[8] = 9; finally System.out.print("A"); catch (Exception e) System.out.println("B");

A.
A
Answer
B.
B
C.
AB
D.
BA

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board