0
Are list and array the same concept?
Confirmation on the above question
3 Answers
+ 3
No, generally they are not the same. Although there are some language that don't quite distinguish arrays and lists.
+ 2
On which basis is your question .Regarding which type of lists -->there could be linked list,circular lists etc .please specify,however lists and arrays are a different,actually lists are embedded in arrays -->a practical example ,one is able to make a list of arrays ,but nothing like an array of lists:)
+ 2
The most basic difference
Arrays hold the same data type of element,array are finite which means you can't add more things to an array
List can hold different types of elements and are dynamic which means you can add items