Describe the difference between an array and a linked list
Linked list is a dynamic data structure whereas arrays are static
In an array every element can be accessed directly whereas in a linked list you need to traverse through until the desired element is found
In an array the contents are stored continuously in memory