Right option is (a) space allocation for array is fixed and cannot be changed during run-time
For explanation: You cannot modify the size of an array once the memory has been allocated, adding fewer elements than the array size would cause wastage of space, and adding more elements than the array size at run time would cause Stack Overflow.