Which of the following statements are true?
◦ MyAbstractList partially implements MyList.
◦ MyLinkedList is implemented using a linked structure.
◦ MyArrayList and MyLinkedList are two concrete implementations of MyList.
◦ MyArrayList is implemented using an array. The array is dynamically created. If the capacity of the array is exceeded, create a new larger array and copy all the elements from the current array to the new array.
◦ A linked structure consists of nodes. Each node is dynamically created to hold an element. All the nodes are linked together to form a list.