Concept Flow - Finally block behavior
Try block starts
Code runs in try
Exception?
Yes→Catch block runs
Catch code runs
Try block ends
Catch ends
Finally block runs ALWAYS
Code after try-catch-finally
The finally block runs no matter what happens in try or catch blocks, even if an exception occurs or not.