Asked by a

What is an Array?

A C# script.

A function.

A collection of objects of the same data type.

A radio.

All Answers 1

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

Explanation: an array is an indexed collection of elements (all of the same type in statically typed languages like C#), accessed by integer indices. Example in C#: int[] a = {1, 2, 3}; a[0] == 1.