Answer and Explanation:1 Arrays are objects, so creating an array requires two steps: 1. declaring the reference to the array 2. instantiating the array To declare a...
For example, if an array is declared as array1[5], it means that it can store a maximum of 5 elements. The first element of that array is represented as array1[0]. Some programming languages like C, C++ require to declare an array with a specific data type. ...