CBSE Class 12 Computer Science
Question 25 of 63
Data Structures in Python — Question 8
Back to all questionsQueue
Reason — A queue is represented as a linear list where insertion (enqueue) can be performed at one end (rear) and deletion (dequeue) can be performed at the other end (front). This characteristic of queues follows the First-In-First-Out (FIFO) principle.