In a linked list, the successive elements in the list:

Need not occupy contiguous space in memory
  • Must occupy contiguous space in memory
  • Must not occupy contiguous space in memory
  • None of these

Unlike an array-based list, the linked list is created by linking together separate objects.

Those objects can be created at any time, and you don't control where they are in memory when they are made.