Google News
logo
Data Structures - Quiz(MCQ)
Queues serve major role in ___________
A)
Simulation of recursion
B)
Simulation of heap sort
C)
Simulation of arbitrary linked list
D)
Simulation of limited resource allocation

Correct Answer :   Simulation of limited resource allocation


Explanation : Simulation of recursion uses stack data structure. Simulation of arbitrary linked lists uses linked lists. Simulation of resource allocation uses queue as first entered data needs to be given first priority during resource allocation. Simulation of heap sort uses heap data structure.

Advertisement