Computer Science, asked by lishamanickamraniswa, 5 hours ago

The finally block is executed after


a.
Always irrespective of whether an exception was thrown in try block


b.
None of them


c.
Successful completion of try block


d.
When an exception is thrown

Answers

Answered by aayushupriya
0

Answer:

In normal case when there is no exception in try block then the finally block is executed after try block. However if an exception occurs then the catch block is executed before finally block.

Similar questions