Introduction to array
An array is a collection of similar type of element storable together in a single contagious memory location. The important thing to remember is the all the data elements stored in an array should be of similar data type.
Array is a reference type which uses the Heap Area of memory to store the same type of data items and uses continues memory locations to store every data item of array.