Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

1. C++ has no array _______ checking, which means you can inadvertently store da

ID: 3642437 • Letter: 1

Question

1. C++ has no array _______ checking, which means you can inadvertently store data past the end of an array.

2. Starting values for the elements of an array may be specified with a(n) _______ list.

3. If a numberic array is partially initialized, the uninitialized elements will be set to _______.

4. If the size declarator of an array definition is ommitted, C++ counts the number of items in the _______ to determine how large the array should be.

5. By using the same _______ for multiple arrays, you can build relationships between the data stored in the arrays. These arrays are referred to as a parallel arrays.

6. You cannot use the _______ operator to copy data from one array to another in a single statement.

Explanation / Answer

1. bounds 2. initialization 3. zero 4. initialization list 5. subscript 6. assignment operator