Answer:
Arrays and linked list are data structures used to store data but it has some advantages and disadvantages.It Is important keep in mind thath both of them are completely usefull in it own case
Step-by-step explanation:
Advantages:
- It doesn't have a size limitation
- It is easy insert new elements
- it doesn't have memory limitation
- It is possible access random elements
- The memory requirements are less than linked list
Disadvantages:
- It is not possible access random element in the list
- it Require more memory to store the pointer to the next element
- It is expensive insert new elements
- it is fixed size
- it needs continuos memory (memory limitation)