When a queue is implemented with the help of a list, it is termed as a linear queue.
3 Likes
True
Reason — When a queue is implemented using a list, it is referred to as a linear queue. The syntax is : Queue = list() or Queue = [].
Queue = list()
Queue = []
Answered By
2 Likes
The insertion and deletion from a Stack takes place only from the 'TOP'.
A queue behaves on the basis of LIFO principle.
Deletion of an element from the queue is termed as pop operation.
An element to a queue is added from the front end.