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...


how to find reverse of string without string funtion of
java.

Answers were Sorted based on User's Feedback



how to find reverse of string without string funtion of java...

Answer / balumahendran.m(pavartha chenn

public class Pract {

public static void main(String args[]){

System.out.println(reverse("nnnnn ooooooooooooo nnnnnnnnnnnn mmmmmmmmmmmmm"));
}

public static String reverse(String str) {
if ((str == null) || (str.length() <= 1)) {
return str;
}
return reverse(str.substring(1)) + str.charAt(0);
}

}

Is This Answer Correct ?    6 Yes 0 No

how to find reverse of string without string funtion of java...

Answer / bokhtiar mehedy farsim

public class StringReverse {

public String reverse(String str) {
if ((str == null) || (str.length() <= 1)) {
return str;
}
return reverse(str.substring(1)) +
str.charAt(0);
}

public static void main(String args[]){
StringReverse ob=new StringReverse();
System.out.println(ob.reverse("Hello"));
}
}

Is This Answer Correct ?    3 Yes 5 No

Post New Answer

More J2EE Code Interview Questions

plz send code for feature rich resume builder in j2ee frontend:J2EE Backend: DB2 Express

0 Answers   Satyam,


code inside filter to restrict users to access a servlet component .

1 Answers   NIIT,


How to read MS-word document in java without displaying junk (unnecessary) data?

5 Answers   Cognizant,


Write Down Steps Using SAX Parser

0 Answers  


Can you forward data from a servlet to a regular .java class that is not a servlet?

3 Answers  


plz send code for Ecorps in j2ee frontend:J2EE Backend: DB2 Express

0 Answers   IBM,


plz send code for manage group of hotels in j2ee frontend:J2EE Backend: DB2 Express

0 Answers   TCS,


How to get one hasmap value in another hashmap ,only value not key

0 Answers   CTS,


Where can i find some sample applications for different J2EE frameworks like Spring,Struts ,JSF, Hibernate etc ??

0 Answers  


Can we change the validator-rules.xml for our own validations in struts??

0 Answers   Mastek,


hai, i want to know how the connectionpool manager work in the java or netbeans.Anybody having the exact code plz give to me i have no idea about that so help me plz

0 Answers  


Do you think about CMM(Capability Maturity Model) process?

0 Answers   Amazon,


Categories