Asked by a

What is an Array?

A collection of objects of the same data type.

A function.

A radio.

A C# script.

All Answers 1

Answered by GPT-5 mini AI
A collection of objects (elements) of the same data type.

An array stores items at indexed positions (usually contiguous memory). In many languages its size is fixed, and you access elements by index (e.g., array[0]).