Exception Handling Java Interview Questions – Set 02

What is immutable object in Java? Can you change values of a immutable object? A Java object is considered immutable when its state cannot change after it is created. Use of immutable objects is widely accepted as a sound strategy for creating simple, reliable code. Immutable objects are particularly useful in concurrent applications. Since they … Read more

Exception Handling Java Interview Questions – Set 01

What is the difference between checked and unchecked exceptions? In general, unchecked exceptions represent defects in the program (bugs), which are normally Runtime exceptions. Furthermore, checked exceptions represent invalid conditions in areas outside the immediate control of the program. Explain Checked Exceptions and Unchecked Exceptions with examples Unchecked exceptions : represent defects in the program … Read more

Exception Handling Java Interview Questions

Exception Handling Java Interview Questions – Set 07 Exception Handling Java Interview Questions – Set 06 Exception Handling Java Interview Questions – Set 05 Exception Handling Java Interview Questions – Set 04 Exception Handling Java Interview Questions – Set 03 Exception Handling Java Interview Questions – Set 02 Exception Handling Java Interview Questions – Set … Read more