Java Exception Handling Question and Answers
9. | What is the difference between checked and unchecked exception? |
---|---|
|
|
10. | Can an exception be rethrown? |
---|---|
Yes, an exception can be rethrown. | |
11. | What is null pointer exception? |
---|---|
A null pointer exception is thrown when calling the instance method of a null object, accessing or modifying the field of a null object etc. | |
12. | What is the difference between final, finally and finalize()? |
---|---|
|
|