Question: What is the worst-case time complexity for searching an element in a linked list?
Options:
Correct Answer: O(n)
Solution:
In the worst case, you may have to traverse the entire linked list to find an element, resulting in O(n) time complexity.