What are the different types of data structures 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 array and arraylist in java?

0 Answers  


What is entry set in java?

0 Answers  


Explain access modifiers in java.

0 Answers  


Can a constructor have different name than a class name in java?

0 Answers  


Why are functions called methods in java?

0 Answers  






11. static class A { 12. void process() throws Exception { throw new Exception(); } 13. } 14. static class B extends A { 15. void process() { System.out.println(”B”); } 16. } 17. public static void main(String[] args) { 18. new B().process(); 19. } What is the result? 1 B 2 The code runs with no output. 3 Compilation fails because of an error in line 12. 4 Compilation fails because of an error in line 15.

6 Answers  


What is the file extension for java?

0 Answers  


what is default constructor and parameterised constructor with example?

1 Answers   KPIT,


how can i take the inputs from users in java program?

7 Answers   Wipro,


Are arrays dynamic in java?

0 Answers  


Is main an identifier?

0 Answers  


When is the garbage collection used in Java?

0 Answers   BirlaSoft,


Categories