Podcast
Questions and Answers
Where is the first element inserted in a queue?
Where is the first element inserted in a queue?
- Random position
- Middle
- REAR (tail) (correct)
- FRONT (head)
What type of data structure is a queue?
What type of data structure is a queue?
- Hierarchical data structure
- Abstract Data Structure (ADT) (correct)
- Non-linear data structure
- Sequential data structure
What is the removal point in a queue?
What is the removal point in a queue?
- Middle
- REAR (tail)
- Random position
- FRONT (head) (correct)
What method does a queue follow for element removal?
What method does a queue follow for element removal?
How is a new element added to a queue known?
How is a new element added to a queue known?