Implementing SortedLists using the class definition below would result in which of the following?

          public class MySortedList> extends MyList implements SortedListInterface
          
MySortedList would inherit all of the methods from MyList, methods unique to the SortedListInterface would need to be implemented
  • MySortedList would inherit all of the methods from SortedListInterface, methods unique to the MyList would need to be implemented, some inherited methods would need to be modified
  • MySortedList would NOT inherit all of the methods from SortedListInterface, all methods would need to be implemented
  • MyList would inherit all of the methods from SortedListInterface, methods unique to the MySortedList would need to be implemented, some inherited methods would need to be modified

There are no hints for this question