You have created an array that can hold 15 items, all of the integer data type. You want
to add a 16th integer. Which of the following is the best approach to doing this?
1. Add it to the existing array.
2. Create a separate variable for the 16th integer.
3. Convert the integers to floats and add the 16th integer.
4. Create a vector and replace the array with it.

Q&A Education