Question
Easy

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:

1
Queue
2
Stack
3
Tree
4
Linked list
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter: Data Structures (Through C++)
Topic: Queue
Correct Answer
Option A
Explanation

The correct option is (1): A Queue is the data structure that perfectly fits the description of a linear list where elements are processed in a First-In, First-Out (FIFO) manner, analogous to customers waiting in a line. Its operational rule is defined by two distinct ends: new elements are always added or inserted at the rear end (this operation is known as Enqueue), and existing elements are always removed or…Read More

A linear list of - HTET Level 3 | Clear Cutoff