Hence they need stored with additional tags giving reference the next element
linked list has dynamic size whereas for array it is fixed size
insertion and deletion is easy in linked list
It can grow ,shrink it means it has variable size, while size of array is fixed.
Insertion/deletion of an element at beginning in a linked list is O(1) operation while in array it is O(n).