Problem 1
What is the difference between a size declarator and a subscript?
Problem 7
Assuming that array1 and array2 are both arrays, why is it not possible to assign the contents of array2 to array1 with the following statement? array1 = array2;
Problem 9
Is an array passed to a function by value or by reference?
Problem 10
When you pass an array name as an argument to a function, what is actually being passed?
Problem 15
The _________ indicates the number of elements, or values, an array can hold.
Problem 17
Each element of an array is accessed and indexed by a number known as a(n) _________.
Problem 20
C++ has no array _________ checking, which means you can inadvertently store data past the end of an array.
Problem 22
If an array is partially initialized, the uninitialized elements will be set to _________.
Problem 32
When a two-dimensional array is passed to a function the _________ size must be specified.
Problem 34
The two types of containers defined by the STL are ___________ and ______________.