An advantage of linked lists over the array-based list implementation is:

Expandability
  • Low access cost to arbitrary positions
  • Optimal search speed
  • Zero overhead
  • None of these

Linked lists are not good for reaching arbitrary positions.

Linked lists do not help with search.

Linked list nodes each have the overhead of a "next" field