Match the types of arrays to their definitions. Fixed stack-dynamic array Stack-
ID: 3690373 • Letter: M
Question
Match the types of arrays to their definitions. Fixed stack-dynamic array Stack-dynamic array Fixed heap-dynamic array Static array Heap-dynamic array A. An array in which both the subscript ranges and the storage allocation are dynamically bound at elaboration time. B. An array in which the binding of subscript ranges and storage allocation is dynamic and can change any number of times during the array's lifetime. C. An array in which the subscript ranges and the storage binding are both fixed after storage is allocated. Additionally, both the subscript ranges and storage bindings are done when the user program requests them during execution, and the storage is allocated from the heap. D.An array in which the subscript ranges are statically bound and storage allocation is static (done before run time). E. An array in which the subscript ranges are statically bound, but the allocation is done at declaration elaboration time during execution.Explanation / Answer
fixed stack dynamic array:E
stack dynamic array:A
free heap dynamic array:B
static array:D
heap dynamic array:C