With respect to linked lists and arrays, which of the following statements is INCORRECT?
1
Linked list is slower in add and remove, but faster in get.
2
Array allocates memory at the time of declaring the array, while linked list allocates memory at the time of adding elements to the linked list.
3
Elements can be added to linked lists indefinitely, while an array will eventually get filled or will have to be resized.
4
Arrays allow random access to the elements contained within them, a linked list only allows sequential access to its elements.
5
None of These