What is the difference between an array and a vector ?
Array have limitations: Size fixed, Homogeneous. While Vector is growable array, allows duplicate elements,ordered, not sorted, Accepts any number of null values. Synchronized,Heterogeneous. It is class of Collection interface.