Answer TRUE or FALSE.

Linked lists are better than array-based lists when the final size of the list is known in advance

False
  • True
  • False

If the list size is known in advance, then the array-based list can allocate exactly the right size array to avoid overhead.

In contrast, when one doesn't know the ultimate size of the list, the linked list can easily expand as needed.