MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program? 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 |
| B. | B |
| C. | AB |
| D. | BA |
| Answer» B. B | |