....... array size can be changed at runtime: (a) fixed (b) preserve (c) dynamic array (d) multidimensional
Answers
Answered by
2
Out of the options fixed, preserve, dynamic array and multidimensional the array size that can be changed at the runtime will be a dynamic array.
The size of a dynamic array can be modified at runtime.
One does not need to declare the size of the array at the time of its initialization. But once created its size cannot be changed.
Answered by
0
Dynamic array size can be changed at runtime.
Option: (c)
Explanation:
- A dynamic array can be defined similar to an array, with the difference that it can be modified dynamically during the run time.
- We don’t need to specify the size of the array in prior. The array elements could occupy contiguous block of memory.
- At once, it has been created, the size cannot be changed. A dynamic array would allocate a big memory space copy the contents t this new space and will continue to occupy the available slots.
Learn more about Dynamic array
In what type of dynamic array do you divide the array into two parts
https://brainly.in/question/9967755
What are dynamic arrays in C#?
https://brainly.in/question/9037809
Similar questions