Question: What is the worst-case time complexity of insertion in a singly linked list?
Options:
Correct Answer: O(n)
Solution:
In the worst case, you may need to traverse the entire list to find the insertion point, resulting in O(n) time complexity.