Which of the following is not true?

The add() method implementation for the List ADT is the same as the add() method implementation for the SortedList ADT
  • A SortedList implementation contains code which compares new elements being added to the SortedList to the elements previously added and stored within the SortedList. This comparison helps the add() method code determine the correct position to add the new element so as to preserve sorted order
  • Lists are ordered but not necessarily sorted. List ordering is based on the positions of the elements or Objects within the List, NOT on the value or state of the element or Object

There are no hints for this question.