Question: When will the code inside finally block be executed in a try-catch statement?
- if there is an error, it won't execute at all
- between the try and catch blocks
- after the try and catch blocks
- when the finally block overrides the catch block and executes in its place
Answer: The correct answer of the above question is Option C:after the try and catch blocks