Which among the following is a linear collection of nodes?
stack
queue
linked list
heap
What is the way in which memory allocation takes place in Java?
Using new operator
dynamic allocation
static allocation
using pointers
What type of operation is included for Pushing an element to the stack top ?
Shifting of elements
Transferring
Moving
Jumping from one position
Which type of expression have the operators placed in between operands?
Infix
Prefix
Postfix
Suffix
Which condition is known as 'overflow'?
Pushing
Popping
stack empty
stack full
Which type of queue variation is implemented in circle instead of straight line?
Circular queue
Input restricted deque
Output restricted deque
deque
Which is the LIFO implemented linear structure?
Stack
Queue
Linked list
Deque
Which data structure uses the technique dynamic memory allocation for allocating memory?
array
tree
Which of the following expression is known as polish notation?
Suffixs
What is the way in which insertion can take place in output restricted deque?
Rear end
Front end
One end
Both end