Search Interview Questions | Click here and help us by providing the answer. Click Correct / Improve and please let us know. |
|
|||
|
| |||||||||||
| Core Java - Interview Questions and Answers for 'Nullpointerexception' - 5 question(s) found - Order By Rating | |||||||||||
| |||||||||||
| Ans. never initialise local to null,yes it is bad pratice | |||||||||||
| |||||||||||
| Ans. Optional is to be used for arguments / atrributes which are indeed optional i.e the request should continue even if they aren't provided. It should not be used for mandatory attributes or arguments as we would like application to shout out ( with error message / exception trace ) to signify a problem. | |||||||||||
| |||||||||||
| Ans. We can declare the reference as final to avoid reassignment but again we can always initialize the final reference to null. Even if there was any such facility available , it would have meant poor use of resources by assigning a new object in memory to each reference that's created. Many a times references are just meant to refer to other objects which already have a reference i.e sharing object by multiple references. | |||||||||||
| |||||||||||
| Ans. When it tries to access an object element or method using reference which is actually null. | |||||||||||
| Ans. By having Null Checks. | |||||||||||
| |||||||||||