As the title say I am looking into the \"Differences between an array and any collection from the java Collection framework\".
Thought it\'s high level enough to provide
There are 5 differences between Array and Collection as given below :
Arrays are fixed in size, whereas some Collections are grow-able in nature.
Arrays store homogeneous data. Collections store both homogeneous as well as heterogeneous data.
In Arrays, there are no underlining data structures, whereas Collections have underlining data structures.
Arrays are recommended for performance, whereas Collections are not.
Arrays use more memory space as compared to Collections.