Finally block

We know that whenever exception occurs, we need to handle such exception using try/catch But, If we miss to handle such exception then program terminates abruptly. This skips some of the important statements to be executed in the program. So, in such scenario, finally blocks comes to rescue us. All the statements or a piece […]

Share this article on