Multiple Choice
What does the following statement do?
Typedef int oneDArray[20];
A) It creates an array of 20 integers.
B) It makes oneDArray a copy of another 20-integer array.
C) It makes oneDArray an alias for a data type that holds 20 integers.
D) It creates a one-dimensional integer array with all elements initialized to 20.
E) It does none of the above.
Correct Answer:

Verified
Correct Answer:
Verified
Q3: The amount of memory used by an
Q4: An array can store multiple values, but
Q5: When you create a vector it is
Q6: The elements of an array can be<br>A)
Q7: To access an array element, use the
Q9: The size of an array is the
Q10: When an array is passed to a
Q11: The following statement for(int val : myArray)<br>Cout
Q12: Any of the following statements can be
Q13: You can assign the contents of one