Answer Posted / venki from hyd
class ReverseString
{
static String name="Hello";
public static void main(String args[])
{
String rname;
for(int i=name.length(); i<0; i--)
{
rname=name.charAt(i);
}
System.out.println(rname);
}
}
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
How listener identify that the event came from a particular object?
Is a boolean variable?
Does sprintf allocate memory?
Is it possible to define a method in java class but provide it’s implementation in the code of another language like c?
What are the drawbacks for singleton class?
Describe how to implement singleton design pattern in struts.
What is the difference between heap memory and stack memory?
What are the states of thread in java?
What is the syntax and characteristics of a lambda expression? Explain
What is thread count in java?
Write a java program to generate fibonacci series ?
What is stringbuffer in java?
what are the states associated in the thread? : Java thread
Can java program run without jre?
What is loop in java?