1
Q:
A) Inside Try Exception Caught IOException Caught Inside Finally After End Try | B) Inside Try Exception Caught Inside Finally After End Try |
C) Inside Try IOException Caught Inside Finally After End Try | D) Inside Try IOException Caught Inside Finally |
Answer: C) Inside Try IOException Caught Inside Finally After End Try
Explanation:
Explanation:
First the try code runs. Then one single exception, the IOException occurs, not two exceptions.Then the Finally code segments executes. After Finally code bas been executed normal application resumes at the next line after the line that called the error. In this case, the After End Try code runs.