If inner catch block is unable to handle the exception thrown then__________

If inner catch block is unable to handle the exception thrown then__________ Correct Answer The compiler will check for appropriate catch handler of the outer try block

In such cases, the compiler will try to find an appropriate outer catch block to handle the exception otherwise if nothing is there then occurs the abnormal behaviour of the program.

Related Questions

In nested try catch blocks, if both inner and outer catch blocks are unable to handle the exception thrown, then ______________
If an exception is thrown and no catch block matches the type of the thrown parameter, then _____
In nested try-catch block, if the inner catch block gets executed, then______________