This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
1 Since the method foo()does not the catch the exception thrown by the method baz(), it must declare runtime exception in its throw clause 2 A try block cannnot be followed both by catch and finally block 3 An empty catch block is not allowed 4 A catch block cannot follow finally block 5 A finally block should always follow one or more catch block I feel all the option is wrong.Answer a is wrong because finally block cannot come before catch block. Any other suggestion Thanks in advance
Arathi<br />Sun Certified Java Programmer
Arathi Rajashekar
Ranch Hand
Joined: Nov 20, 2001
Posts: 112
posted
0
I got the answer. Answer is 4. I read the answers properly
Vikrama Sanjeeva
Ranch Hand
Joined: Sep 02, 2001
Posts: 756
posted
0
What if u remove catch after finally & baz() within finally.And put bar() in finally. Bye. Viki.
yes,the answer is 4. if you try to compile the code,it will give you: Qb4ab.java:15: 'catch' without 'try' catch (MyException e) I think that an catch must come on the heels of try if it is needed.