Core java - Interview Questions and Answers for 'Airbnb' | Search Java Interview Question - javasearch.buggybread.com
Questions
Search
List By Company
List By Topic
Legacy
Tests
Repository
DashBoard
Java
Java 8
Java 7
Java Abbreviations
OCJP / SCJP
Class List
New in Java 8
Java Exceptions
Spring Exceptions
Java Enums
Java 8 Lambda
Java 8 java.time
Big Data
Best Of Java
Discussion
Search
Subscribe
Search Interview Questions
3152 questions in repository.
There are more than 200 unanswered questions.
Click here
and help us by providing the answer.
Have a video suggestion.
Click Correct / Improve and please let us know.
Label / Company
Label / Company / Text
Search
Submit Question
Airbnb
Write a Review for Airbnb
Name (optional):
Email (optional):
Core java - Interview Questions and Answers for 'Airbnb' - 1 question(s) found
- Order By Newest
Q1.
Write a method to check if input String is Palindrome?
Core Java
Admin
info@buggybread.com
Ans. private static boolean isPalindrome(String str) {
if (str == null)
return false;
StringBuilder strBuilder = new StringBuilder(str);
strBuilder.reverse();
return strBuilder.toString().equals(str);
}
Help us improve. Please let us know the company, where you were asked this question
:
Like
Discuss
Correct / Improve
java
string
stringbuilder
stringbuilder
string class
code
palindrome
HCL Technologies
Hootsuite
ebay
Mobile Apps Company
TripAdvisor
Wallet Hub
Groupon
OpenText
Airbnb
Vantiv
Minted LLC
Boston Analytics
mint.com
Arista Networks
Dealer.com
the Zappos Family
Sony PlayStation
Taser
Wolters Kluwer
Wize Commerce
Hitachi Consulting
Quickr
SmartBrief
Liaison International
Monitise
Exilant Technologies
Enova
Wayfair
Amadeus
MakeMyTrip
Naggaro
Vudu
OnDeck Capital
HighRadius
thePlatform
Trimax IT Infrastructure & Services
Insight Global
Basic
 
frequent
Correction
Duplicate of Another Question
Company where this question was Asked
Suggestion
Related Questions
How does volatile affect code optimization by compiler?
Which keyword is used to provide explicit access of a code block to single thread ?
a. Transient
b. Final
c. Explicit
d. Synchronized
What is the difference between the following two code lines ?
1. new OuterClass().new InnerClass();
2. new OuterClass.InnerClass();
Which String class does not override the equals() and hashCode() methods, inheriting them directly from class Object?
If you are given a choice to implement the code to either Insert a Record or Update if already exist, Which approach will you follow ?
How can we make sure that a code segment gets executed even in case of uncatched exceptions ?
Will this code give error if i try to add two heterogeneous elements in the arraylist. ? and Why ?
What is the difference between these two approaches of creating singleton Class ?
//Double Checked Locking Code
public static Singleton createInstance() {
if(singleton == null){
synchronized(Singleton.class) {
if(singleton == null) {
singleton = new Singleton();
}
}
}
return singleton;
}
//Single checked locking code
public static Singleton createInstance() {
synchronized(Singleton.class) {
if(singleton == null) {
singleton = new Singleton();
}
}
return singleton;
}
What is the difference between following two segments of code
Code 1
int x = 4 * 3;
int y = x * 5;
Code 2
int y = 4 * 3 * 5;
If arrays cannot be resized , Why is this code valid
String[] strArray = new String[2];
strArray = new String[5];
Subscribe to Java News and Posts. Get latest updates and posts on Java from Buggybread.com
Enter your email address:
Delivered by
FeedBurner
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus
Help us and Others Improve. Please let us know the questions asked in any of your previous interview.
Any input from you will be highly appreciated and It will unlock the application for 10 more requests.
Company Name:
Questions Asked:
X Close this
X Close this
Help Us Improve.
Please share your
interview experience.
Company Name:
Questions Asked: