Question: Which of the following operations is not efficient in a linked list?
Options:
Correct Answer: Accessing an element by index
Solution:
Accessing an element by index in a linked list requires traversal from the head, making it O(n) in time complexity.