✏️ Explanatory Question
finally clause in exception handling? Provide an example. The finally clause contains code that runs regardless of how the try block exits. Example:
try
{
// Code that might throw exceptions
}
catch
{
// Handle exceptions
}
finally
{
// Clean-up code
}