Cognizant interview question

Difference Between Array List and Linked Array List?Which is better ?

Interview Answers

Anonymous

Mar 5, 2019

ArrayList and LinkedList both implements List interface and maintains insertion order. Both are non synchronized classes. ArrayList is better for storing and accessing data. LinkedList is better for manipulating data.

4

Anonymous

Sep 22, 2016

Linkedlist is better as in linkedlist,insertion and deletion can happen anywhere which leads to less memory consumption

7