Question
Easy

Toll Plaza simulation is an application of.

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

The correct option is (2): A Toll Plaza simulation is a classic real-world application that is perfectly modeled by the Queue data structure. The core principle of a toll lane is First-In, First-Out (FIFO), meaning the first vehicle to join the line (enqueue) must be the first vehicle to be served (dequeue) and leave the plaza. The Queue structure is specifically designed to manage this sequential processing order, where insertions…Read More