Write java program to reverse string without using api?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

How will you reverse a singly-link list?

0 Answers   Akamai Technologies,


Explain the differences between static and dynamic variables?

0 Answers   Fidelity,


What is the format of Inner Class after it compiled?

1 Answers  


How do you remove an element from an arraylist in java?

0 Answers  


How can two threads be made to communicate with each other?

3 Answers   HCL,






In a my eclipse editor if i want to switch from jdk 1.4 to jdk 1.6 how to do that???? Initially i have jdk1.4

1 Answers   Tech Mahindra,


Is Constructor possible in abstract class in java ?

0 Answers   HCL,


What is boolean false?

0 Answers  


From the two, which would be easier to write: synchronization code for ten threads or two threads?

0 Answers  


Is singleton class thread safe?

0 Answers  


what is platform dependent translation and platform dependent programming language

2 Answers  


What will be the output of the program? public class Test { public static void main(String args[]) { ArrayList<String> list = new ArrayList<String>(); list.add("2"); list.add("3"); list.add("4"); list.add("5"); System.out.println("size :"+list.size()); for(int i=0;i<list.size();i++) { list.remove(i); } System.out.println("size after:"+list.size()); } }

5 Answers   Rolta,


Categories