Final answer:
Anytime the name of an array is used without brackets and a subscript, it is seen as accessing a single element of the array.
Step-by-step explanation:
Anytime the name of an array is used without brackets and a subscript, it is seen as accessing a single element of the array.
For example, if we have an array named 'numbers' with elements [1, 2, 3], and we use the name 'numbers' without brackets and a subscript, it will refer to the entire array. But if we use the name 'numbers' with brackets and a subscript, like 'numbers[0]', it will refer to the first element of the array which is 1.