How Will You Handle The Checked Exceptions ?

 

: You can provide a try/catch block to handle it. OR

Make sure method declaration includes a throws clause that informs the calling

method an exception might be thrown from this particular method

When you extend a class and override a method, can this new method throw

exceptions other than those that were declared by the original method

No it cannot throw, except for the subclasses of those exceptions