Answers for "in the following program, which block of code code will always be executed whether or not an exception occurs or is caught?"

1

importance of finally block in java

Finally block is used for cleaning up of resources such as closing connections, 
sockets etc. if try block executes with no exceptions then finally is called 
after try block without executing catch block. If there is exception thrown in 
try block finally block executes immediately after catch block.
If an exception is thrown,finally block will be executed even if 
the no catch block handles the exception.
Posted by: Guest on December-01-2020

Code answers related to "in the following program, which block of code code will always be executed whether or not an exception occurs or is caught?"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language