Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

Core%20Java%20Interview%20Questions%20and%20Answers

Question: What can go wrong if you replace && with & in the following code:
Answer:
String a=null;
if (a!=null && a.length()>10) {
	...
}
A single ampersand here would lead to a NullPointerException.
Is it helpful? Yes No

Most helpful rated by users:

©2024 WithoutBook