Arrays -MCQ
An array is a data structure designed to store multiple values of the same data type efficiently. It allows storing of multiple values in a single variable and referencing each value through its respective index number. The elements of an array are stored in contiguous memory locations, which makes the manipulation of the array easy with a smaller of set of code and improves the speed.
3.Arrays QB-Python V2