0
If you write something after finally block,Then it wont execute if
- Catch part throw some exception which is not handled by another try catch,
- Finally part throw some exception which is not handled by another try catch,
- Code written before Try throw some exception which is not handled by another try catch,
- return statement is executed prior to the statement written after Finally...
(Means return statement written inside Try/Catch/Code Block before Try, and it executes)
(Writing return inside finally causes syntax error so obviously it doesn't matter).
Hope it helped.
Mark as answer if it is. :)