. An array is a collection of -------------type of elements
Answers
Answer:
An array is a collection of the same type of elements.
An array is a collection of elements of the same type placed in contiguous memory locations that can be individually referenced by using an index to a unique identifier.
ARRAY
An array is a collection of same type of elements.
The following are frequent characteristics of arrays:
*A kind of element. An array's items are all of the same type.
* A set of indexes. An index value is used to access the elements of an array. A unique index value is assigned to each array element.
* A measurement of length. The number of elements in the array determines the array's length.
*A measurement. The array's size is equal to the sum of the array's items. This may be calculated as Length * Element Size, where Length is the number of elements in the array and Element Size is the memory size of a single element.
*The syntax for creating an array varies depending on the programming language.