Question
Easy

A queue follows _______.

1
FIFO (First In First Out) principle
2
LIFO (Last In First Out) principle
3
Ordered array
4
Linear tree
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter: Data Structures (Through C++)
Topic: Data Structure Concepts
Correct Answer
Option A
Explanation

The correct option is (1): FIFO (First In First Out) principle is the defining characteristic of a Queue data structure. A queue is a linear collection of elements that is conceptually modeled after a real-world line, such as customers waiting for service. The acronym FIFO explicitly describes its behavior: the element that is inserted First into the queue is always the element that comes First Out. Data is consistently added…Read More