1.2k views
5 votes
In every programming language, when you access data stored in an array, you must use a ____ containing a value that accesses memory occupied by the array.

User Stot
by
7.1k points

1 Answer

0 votes
An array is an indexed collection of data elements. First you must declare an array, give its name and data. Once your arrays are declared, you access the elements in an array with the array name, and the index number inside brackets [ ].
So, in every programming language, when you access data stored in an array, you must use a command [] (brackets) containing a value that accesses memory occupied by the array.
User Louis Parkin
by
6.8k points