Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

Core Java Interview Questions and Answers

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