Question: Which of the following operations is NOT efficient for a linked list?
Options:
Correct Answer: Accessing an element by index
Solution:
Accessing an element by index in a linked list requires O(n) time, as it must traverse the list from the head.