Question: Which of the following operations can be performed in O(1) time on a linked list?
Options:
Correct Answer: Deletion from the beginning
Solution:
Deletion from the beginning of a linked list can be done in O(1) time as it only requires updating the head pointer.