Explain the difference between arraylist and linkedlist in java?


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

Post New Answer

More Core Java Interview Questions

Given: 10. interface A { void x(); } 11. class B implements A { public void x() { } public voidy() { } } 12. class C extends B { public void x() {} } And: 20. java.util.List list = new java.util.ArrayList(); 21. list.add(new B()); 22. list.add(new C()); 23. for (A a:list) { 24. a.x(); 25. a.y();; 26. } What is the result? 1 Compilation fails because of an error in line 25. 2 The code runs with no output. 3 An exception is thrown at runtime. 4 Compilation fails because of an error in line 20.

3 Answers  


What is the difference between assignment and initialization?

0 Answers  


What is difference between variable declaration and definition?

0 Answers  


Can a class be private or protected in java?

0 Answers  


What are the differences between heap and stack memory?

0 Answers  






Difference between Reader/Writer and InputStream/Output Stream?

9 Answers   Adobe, Kirusa, Verizon,


What is a parent class in java?

0 Answers  


Hi Friends.. can any one provide the real time example for methodoverloading and methodoverriding .........

2 Answers   Honeywell,


What is java volatile?

0 Answers  


How can I debug the Java security exceptions and AccessControlExceptions?

0 Answers   IBM,


What is main in java?

0 Answers  


Difference between error and exception

3 Answers   Nous, TCS,


Categories