What are the different types of sorting in java?


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

Post New Answer

More Core Java Interview Questions

What is purpose of keyword void?

0 Answers  


Can we clone singleton object in java?

0 Answers  


Difference between keyword and identifier.

0 Answers   TCS,


when to use ArrayList and when to use HashMap in webApplication.

1 Answers  


If I will write String s=new String("XYZ"); String s1=new String("XYZ"); if(s.equals(s1)){ sop("True"); } else{ sop("False"); } This program will give me "True". But When I am creating my own class suppose class Employee{ public Employee(String name); } Employee e= new Employee("XYZ"); Employee e1 = neew Employee("XYZ"); if(e.equals(e1)){ sop("True"); } else{ sop("False"); } Then it will give the output as "False". Can I know what is happening internally?

5 Answers  






What is percentage in java?

0 Answers  


what is the use of finalize()Method please explain with an example

3 Answers  


what is run time polymorphism

4 Answers  


What is the importance of hashcode() and equals() methods?

0 Answers  


what is the difference between HashMap And HashTable?

5 Answers   Hexaware,


What is style and indentation?

0 Answers  


Difference between Superclass and Subclass?

7 Answers  


Categories