To execute code regardless of exceptions. Frame the concept in practical terms so you can explain it during interview discussion.
A finally block in Java ensures that certain code runs no matter what happens in the try block, whether an exception is thrown or not. This is useful for resource cleanup, such as closing a file stream. Even if a return statement is in the try block, the finally block will still execute.