Which operation can't be performed by a Queue?
Q1. Which operation can't be performed by a Queue?
Answer: Traversing
Explanation: A queue supports insertion (enqueue) at the rear, deletion (dequeue) from the front, and retrieving (peeking), but traversing all elements is not a standard queue operation.