Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Write the code for Palindrome ?

Answer Posted / aslam

public boolean isPaliandrome(String txtToCheck){

StringBuffer strb1 = new StringBuffer(txtToCheck).reverse();
if(txtToCheck.equals(strb1.toString()))
return true;
return false;

}

Is This Answer Correct ?    5 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can we make sure main() is the last thread to finish in java program?

1256


What are the different data types in java?

1052


What is difference between float and double?

1014


What is the difference between @before and @beforeclass annotation?

1197


How can I right-justify a string?

1254


How do I stop concurrentmodificationexception?

1080


Explain the meaning of java applet.

1129


Is null an object in java?

1087


Is a char always 1 byte?

1048


Can a final variable be manipulated in java?

1045


Difference between ‘>>’ and ‘>>>’ operators in java?

1182


Why webdriver is an interface?

1092


Can we override private method in java?

1144


How can we access some class in another class in java?

1054


When will you define a method as static in Java?

1109