Java SE 6 Programmer Certified Professional (1Z0-851)
© examsiri.com
Question : 4 of 10
Marks:
+1,
-0
Given:
What is the result?
1. class Birds {
2. public static void main(String [] args) {
3. try {
4. throw new Exception();
5. } catch (Exception e) {
6. try {
7. throw new Exception();
8. } catch (Exception e2) { System.out.print("inner "); }
9. System.out.print("middle ");
10. }
11. System.out.print("outer ");
12. }
13. }
What is the result?
Go to Question: