Google News
logo
Data Structures - Quiz(MCQ)
A linear list of elements in which deletion can be done from one end (front) and insertion can take place only at the other end (rear) is known as _____________
A)
Queue
B)
Tree
C)
Stack
D)
Linked list

Correct Answer :   Queue


Explanation : Linear list of elements in which deletion is done at front side and insertion at rear side is called Queue. In stack we will delete the last entered element first.

Advertisement