Myarraylist is more efficient than mylinkedlist for the operations C. Insert/delete an element in the beginning
In terms of operation, MyLinkedList outperforms MyArrayList. Add/remove an element from the list's beginning.
Regarding the operation Insert/remove an element at the start. The list just changes the list's head to the next position.
However, for an array, it must shift all values from the second member to the end one place to the left.
In conclusion, the correct option is C.
Learn more about array on:
https://brainly.com/question/24275089
#SPJ1