Answer Posted / palemraju
String str="how r u";
int length=str.length();
System.out.print("The reverse String is:");
while(len>0)
{
System.out.print(str.charAt(len-1));
len--;
}
| Is This Answer Correct ? | 11 Yes | 2 No |
Post New Answer View All Answers
v-model life cycle
What is array command?
Explain the features of interfaces in java?
How will you reverse a link list without using recursion?
How do you execute a thread in java?
Explain about object oriented programming and its features?
Is overriding possible in java?
What are the different types of inheritance in java?
What is java algorithm?
What is %02d?
How will you serialize a singleton class without violating singleton pattern?
What steps are taken when the OS shifts from one-thread execution to another?
Why is java multithreaded?
What is lambda in java?
Is linkedlist thread safe in java?