Which of the following is a two-dimensional array?
array anarray[20][20];
int anarray[20][20];
int array[20, 20];
char array[20];
Which data structure works on dynamic memory allocation?
Linked List
Structures
Array
Pointer
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
An insertion operation in a stack is called
POP
PUSH
Force
None of them
A queue is a linear list implemented in
LIFO
FIFO
SIFO
FISO
Which data structure works on static memory allocation?
Trees
Stack
What is an array?
An array is a series of elements of the same type in contiguous memory locations.
An array is a series of element.
An array is a series of elements of the same type placed in non-contiguous memory locations.
None of the mentioned.