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
What is the private method modifier?
Can you use abstract and final both with a method?
Can constructor be synchronized?
Why deletion in linkedlist is fast than arraylist?
Can we serialize singleton class?
What loop means?
What are strings in physics?
What is difference between static variable and global variable?
Which is better 64 bit or 32 bit?
what is optional in java 8?
How is final different from finally and finalize?
Which variables are stored in heap?
why Interface used?
What is the file extension for java?
What is the static variable?