Can we sort a map in java?


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

Post New Answer

More Core Java Interview Questions

How to implement an arraylist in java?

0 Answers  


Give example to differentiate between call by value and call by reference.

0 Answers   TCS,


abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }

3 Answers  


What is literal example?

0 Answers  


What is difference between == and === in js?

0 Answers  






static inner classes means..?

1 Answers  


What one should take care of, while serializing the object?

0 Answers  


why we need this (1.object,2.class,3.data hiding,4.encapsulation,5.abstraction,6. polymorphism,7.inheritance)

2 Answers  


What is the purpose of the main method?

0 Answers  


explain the difference between jdk and jvm?

0 Answers  


Which class is the superclass of all classes?

0 Answers  


why using interface interface ?

0 Answers  


Categories