Question: What is the average time complexity for inserting an element at the beginning of a linked list?
Options:
Correct Answer: O(1)
Solution:
Inserting an element at the beginning of a linked list is done in constant time, O(1).