V
Q. 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"); } } }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Dead state can be compared with ______ method of applets
Q. Which of the following is not a primitive data type in Java?
Q. An array of dimension N contains __ number of subscripts or brackets?
Q. What will be the output of following java code?
Q. In Java, can a class implement an interface and extend an abstract class simultaneously?
Q. JSP includes a mechanism for defining …………………………. or custom tags.
Discusssion
Login to discuss.