Difference between Arrays and Collections
Arrays Collections Can hold only homogeneous elements. All elements should of same data type, either all are int or String etc. Can hold heterogeneous elements. All the elements can be of mix of data types, some can be int and rest can be of String etc. Array size is fixed, once declared we can’t alter…