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 an algorithm to find an palindrome

Answer Posted / sagai

boolean isPalindrome(string s){
char[] letters = s.toCharArray() //convert string to
array of characters
int firstCnt = 0 //counter for left side
int secCnt = letters.length - 1 //counter for right
side
while (firstCnt < secCnt){ //work toward middle
if (letters[firstCnt] != letters[secCnt]){
return false //if left and right does not
match, is not a palindrome
}
firstCnt++
secCnt--
}
return true //if loop completes without a false, is a
palinrome
}

Is This Answer Correct ?    20 Yes 9 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How the application is launched to the production environment?

1653


Hi I want to start online training couses for testing Any body plz help me out how to start the online courses Plz post the answer here or send me a mail for kommineni.1020@gmail.com

2211


What's the difference between alpha and beta testing?

1195


How we allocate the priority(Blocker, Critical, etc.,) in Testing?

1839


What is a testbed in manual testing?

1486


what is the difference between Desktop testing,Client/server testing and webapplication testing

2067


What is exploratory testing and when should it be performed?

1170


can we do database testing in manual testing? then how we write the test case?

6897


What is smoke testing and user interface testing ?

1096


test measurment techniques

2095


How to do the performance testing manually? Does you have a test case for that?

1160


Suggest some book to learn more test case???

2021


What are the various techniques in black box testing?

1140


tell wat u did in ur banking project?

2311


whta is compile module?

2139