Microsoft
98-361 · Question #40
You are creating an application for a help desk center. Calls must be handled in the same order in which they were received. Which data structure should you use?
The correct answer is D. Queue. A queue keeps the order of the items.
Understanding Core Programming
Question
You are creating an application for a help desk center. Calls must be handled in the same order in which they were received. Which data structure should you use?
Options
- ABinary tree
- BStack
- CHashtable
- DQueue
How the community answered
(62 responses)- A5% (3)
- B13% (8)
- C8% (5)
- D74% (46)
Explanation
A queue keeps the order of the items.
Topics
#queue#FIFO#data structures
Community Discussion
No community discussion yet for this question.