Valid 1Z0-804 Dumps shared by ExamDiscuss.com for Helping Passing 1Z0-804 Exam! ExamDiscuss.com now offer the newest 1Z0-804 exam dumps, the ExamDiscuss.com 1Z0-804 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 1Z0-804 dumps with Test Engine here:
Given the code fragment: What is the result when infected() is invoked?
Correct Answer: D
Explanation/Reference: Explanation: The following line throws and exception: int i = 1/0; This exception is caught by: catch(Exception e) { System.out.print("catch "); throw e; Lastly, the finally statement is run as the finally block always executes when the try block exits. This ensures that the finally block is executed even if an unexpected exception occurs. Reference: Java Tutorial,The finally Block