Array:
=========
Storing multiple values in a single variable
Features:
=========
1. It supports similar data type
2. It is index based
3. Index starts from 0-(n-1)--------->n is ur length
Syntax :
=========
int[] a = new int[5];
or
int a[] = new int[5];
Note:
=======
When we assign a duplicate value in the same index it will
override the value.
Disadvantages:
==============
1. It will not support disimilar data type.
2. The length is fixed.
3. It has high memory wastage.