5.14 - General Questions
The terms "insert" and "delete" are traditionally associated with which data structure(s)?
List
The terms "enqueue" and "dequeue" are associated with which data structure?
Queue
Which data structure allows insertion only at the back, and removing only from the front?
Queue
The term "LIFO" is associated with which data structure?
Stack
The terms "push" and "pop" are associated with which data structure?
Stack
Which data structure allows insertion only at the top, and deletion only at the top?
Stack
Which data structure would be used to implement recursion?
Stack
Which of the following is not a linear data structure? Array-based list, Linked list, Queue, Tree, Stack, or these are all LDS.
Tree