Question: Which of the following operations has a time complexity of O(n) in a linked list?
Options:
Correct Answer: Searching for a value
Solution:
Searching for a value in a linked list requires traversing the list, which takes O(n) time in the worst case.