In an array-based list, the successive elements in the list:

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

The list elements are stored in an array.

Where in the array should they go?

The list element in list position i will be stored in array position i.