employer cover photo
employer logo
employer logo

KUNCHAM Software Solutions

Is this your company?

KUNCHAM Software Solutions interview question

What are the differences between array list and linked list?

Interview Answer

Anonymous

28 Sept 2019

ArrayList internally uses a dynamic array to store the elements. LinkedList internally uses a doubly linked list to store the elements. Manipulation with ArrayList is slow because it internally uses an array. If any element is removed from the array, all the bits are shifted in memory.