Question: Which of the following operations has the worst time complexity in a singly linked list?
Options:
Correct Answer: Accessing an element
Solution:
Accessing an element in a singly linked list requires traversal from the head to the desired node, which takes O(n) time in the worst case.