Score: 0/70%
Question 1:

Arrays are always indexed starting at subscript ________.

Question 2:

How many integers can the array named numbers contain?

int numbers[10]; 

Question 3:

Which of the following is a legal array definition in C++?

Question 4:

C++ treats an array name as:

Question 5:

All array elements must be:

Question 6:

Given the following array declaration, how would you display 100.7  from the array?

double temperatures[] = {98.6, 95.2, 88.7, 100.7, 89.0};  

Question 7:

Given the following array declaration, what would the following code display? 

double temperatures[] {98.6, 95.2, 88.7, 100.7, 89.0}; 
cout << temperatures[5] << endl;
Question 8:

How would you define a vector named temperatures that contains doubles?

Question 9:

How would you determine the number of elements contained in a vector named temperatures?

Question 10:

What is one way that vectors and arrays are different?