All of the____in a given array must be the same type. Element, statement, instructions, loop.

The correct term to fill in the blank is "elements".

To determine this, you need to understand the basic concept of an array. An array is a data structure that stores a fixed-size sequence of elements of the same type. Each element in the array can be accessed by its index, which represents its position in the array.

When defining an array, you need to specify the type of elements it will contain. All elements in the array should have the same data type, whether it be integers, floating-point numbers, characters, or any other data type.

So, in the given question, all of the elements in a given array must be of the same type.