Identify the name of the pointer generally used to delete an existing element from a queue
Rear
Front
Top
2 & 3
A stack is a linear list implemented in
LIFO
FIFO
SIFO
FISO
A delete operation in a stack is called
POP
PUSH
Force
None of them
Which data structure works on static memory allocation?
Linked List
Trees
Stack
Array
Linked list is a collection of
Data elements, called nodes pointing to the next nodes by means of pointers.
Data elements, called nodes pointing to the next nodes by means of integers
Data elements, called nodes
1 & 2
Which of the following is a two-dimensional array?
array anarray[20][20];
int anarray[20][20];
int array[20, 20];
char array[20];