You are on page 1of 4

Linked List Questions

Note: In Linked List implementation of Stack, Insertion & Deletion operations


performed at 1 end.
In Linked List implementation of Queue, Insertion & Deletion operations
performed at other ends.
Ans: (d)
Explanation: Whenever the element is added to the Linked List, it is always
added at the beginning of the list. Therefore, we can say that the First Node in
the Linked List is considered as the Top of the Stack.
Ans: (a)

Explanation: Since Queue follows FIFO, so new element inserted at last.


Ans: (c)

Ans: (b)

You might also like