In which dynamic structure the elements are deleted in the same order as they are inserted into?
stack
circular queue
deque
queue
Which type of queue variation is implemented in circle instead of straight line?
Circular queue
Input restricted deque
Output restricted deque
Which is the LIFO implemented linear structure?
Stack
Queue
Linked list
Deque
What do you mean by the next node in the sequence?
Predecessor
Successor
Null link
Link pointer
Which variation of deque allows insertion at one end and deletion at both end?
Linear deque
Linked deque
Input restricted
Output restricted
Which type of expression have the operators placed in between operands?
Infix
Prefix
Postfix
Suffix
Which among the following is a linear collection of nodes?
linked list
heap
Which of the following expression is known as polish notation?
Suffixs
Which one of the following data structure will overcome the problem of unutilized space?
What is the way in which insertion can take place in output restricted deque?
Rear end
Front end
One end
Both end