what is the major difference between linkedlist and arraylist in java?


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

Post New Answer

More Core Java Interview Questions

My interview asked what is dynamic variable in java and where we use them.

2 Answers   IBM,


Does Java support multiple Inheritance?

12 Answers  


How do you sort in java?

0 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,


What is a class ?

8 Answers  






What is multiple inheritance & can we implement it in java?

6 Answers   Satyam,


Is void a type?

0 Answers  


Which data type is class in java?

0 Answers  


What is a method declaration?

0 Answers  


What is object english?

0 Answers  


What is the purpose of object oriented programming?

0 Answers  


Explain the concept of proper inheritance?

0 Answers   Thomson Reuters, Virtusa,


Categories