- Final Exam Review updated already
passed
Character arrays are also called this? - correct answer ✔✔c-strings
The following array is a ___-dimensional array int list[2][5][6][6] - correct answer ✔✔4
The [] is called this and it allows access to an individual character in a string - correct answer ✔✔array
subscript
The predefined mathematical function for the square root of a number is this - correct answer
✔✔sqrt(x)
These alter the flow of control. They can be used to exit early from a loop or skip the remainder of a
switch structure. - correct answer ✔✔Break and continue
The following for loop: for (index = 0; index < 10; index++) cout << sales[index] << " "; Is used for _______
data - correct answer ✔✔outputting (stored in an array)
The following loops is for _____ data for (index = 0; index <10; index++) cin >> sales[index]; - correct
answer ✔✔inputting
This is a sequence of 0 or more characters. The first character is in position 0 and the second is in
position 1. - correct answer ✔✔string
These are identifiers that are declared outside of every function definition. - correct answer ✔✔global
identifiers