Q. What does the `finally` block do in exception handling?
β
Correct Answer: (C)
Executes regardless of error
Explanation: `finally` is always executed after `try` and `except` blocks, regardless of exception.