Nullpointer exception is a very common exception. Why is it
not made as a checked exception?

Answers were Sorted based on User's Feedback



Nullpointer exception is a very common exception. Why is it not made as a checked exception?..

Answer / ravi jain

when some operation is done with an object which is not
initialized i.e. object is "null" than NullPointerException
occurs.

This exception is in category of unchecked exceptions because
instance are not available at compile time so how complier checks whether object is null or instantiated, so it is
treated as unchecked exception.

Is This Answer Correct ?    18 Yes 0 No

Nullpointer exception is a very common exception. Why is it not made as a checked exception?..

Answer / ajay kumar sharma

When a null value is passed to a method or a method
receieve null(nothing) value either a run time or vice-
versa, JRE or method will throw a nullpointer exception.

It is java's buit-in exception thrown at relevant time.

Is This Answer Correct ?    0 Yes 8 No

Post New Answer

More Core Java Interview Questions

aabccdee Find the used alphabets as abcde ?

4 Answers  


What are thread groups?

0 Answers  


What is Applet Flickering ?

1 Answers   Infosys, Persistent,


What is diamond operator in java?

0 Answers  


List the features of java programming language.

0 Answers  






What does a method signature consist of?

0 Answers  


Different types of Layouts?

11 Answers  


How to create an immutable class?

0 Answers  


What is indexof in java?

0 Answers  


In how many ways we can do synchronization in java?

0 Answers  


Difference between collection, collection and collections in java?

0 Answers  


What is the difference between delete and delete[]

0 Answers   Amazon,


Categories