Which memory allocation technique allocates an amount of memory during program run?
Dynamic memory allocation
Static memory allocation
Root memory allocation
None of them
Which memory allocation technique reserves fixed amount of memory before actual processing takes place?
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.
A queue is a linear list implemented in
LIFO
FIFO
SIFO
FISO
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];