Answer:
Answer is (a) reserve
Explanation:
Usually when we create an array variable, in some language the memory is allocated automatically. But in some the memory is not allocated automatically. So we need to reserve the memory space for the array.
For example in C++ dynamic memory allocation we need to allocate memory using new keyword.