Question: When will the code inside finally block be executed in a try-catch statement?

  1. if there is an error, it won't execute at all
  2. between the try and catch blocks
  3. after the try and catch blocks
  4. 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