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

can you program for reverse string?

Answer Posted / narayanan

public class reverse {
public static void main(String args[]){

String s="malayalam";
StringBuffer sb=new StringBuffer();
int k=s.length();
for (int i = k-1; i >-1; i--) {
sb.append(s.charAt(i));

}
System.out.println(sb);
}

}

Is This Answer Correct ?    9 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the main concepts of oops in java?

1642


What exactly is java?

900


What is function declaration?

924


What state does a thread enter when it terminates its processing in java programming?

988


What is the difference between multitasking and multithreading in Java

1142


Why is java so popular?

1066


Implementations of set interface?

965


Variables used in a switch statement can be used with which datatypes?

945


State the difference between strings and arrays.

1157


what state does a thread enter when it terminates its processing? : Java thread

1002


What is an argument java?

931


What is a vector in java?

979


What restrictions are placed on method overriding in java programming?

941


Is it possible for a yielded thread to get chance for its execution again?

902


What is an example of a keyword?

1027