Briefly summarize in your own words the four categories of a
Solution
1.Static Array: subscript ranges are statically bound and memory is allocated during the compilation which was static.it is unable to resize during execution.it should contain a fixed amount of items.
.....................................................................................................................................................................
2.Fixed stack Dynamic: it is similer to staic array which was bounded statically,but allocation is perfomed during the decleration.
Benefits:1.space proficiency.
2.enhances recursion
drawback: should aware of size during compilation
......................................................................................................................................................................
3.Fixed heap dynamic array: storage binding was dynamic but constant after the allocation.
.....................................................................................................................................................................
4.Heap dynamic array : both the storage of allocation and binding of script language is dynamic ,they are able to altrer more number of times.
