Exception handling Interview Questions for Fresher and Experienced
1. What do you mean by Exception? 2. How many types of exceptions in java? 3. What is the difference between Exception and error? 4. What is the difference between checked Exception and un-checked Exception? 5. Checked exceptions are caused by? 6. Unchecked exceptions are caused by? 7. Errors are caused by? 8. Is it possible to handle Errors in java? 9. What the difference is between partially checked and fully checked Exception? 10. What do you mean by exception handling? 11. How many ways are there to handle the exception? 12. What is the root class of Exception handling? 13. Can you please write some of checked and un-checked exceptions in java? 14. What are the keywords present in Exception handling? 15. What is the purpose of try block? 16. In java is it possible to write try with out catch or not? 17. What is the purpose catch block? 18. What is the difference between try-catch? 19. Is it possible to write normal code in between try-catch blocks? 20. What are ...