1.

What Is The Difference Between An Array And A List?

Answer»
  • Array: is collection of homogeneous ELEMENTS.
  • List :is collection of heterogeneous elements.
  •  Array: MEMORY allocated is STATIC and continuous.
  •  List: memory allocated is DYNAMIC and Random.
  • Array: User need not have to keep in track of NEXT memory allocation.
  • List: User has to keep in Track of next location where memory is allocated.



Discussion

No Comment Found