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

1. Complete the following: a. In a C++ program a list is represented using a str

ID: 3555338 • Letter: 1

Question

1. Complete the following:

a. In a C++ program a list is represented using a structured data type called: ______________

b. A _______________ is used to indicate which component of an array is to be accessed.

c. The maximum number of components in an array must be specified at within the source code (true / false).

d. The BASE TYPE that should be used when working with a list of grade point averages is ____________

e. What does the identifier look like that would be used to access the fourth component of an array with the variable named: scores

f. The number of subscripts required to specify a particular component of an array is called the ________________ of the array.

g. The line of source code to declare a typedef called: LIST_D

Explanation / Answer

a. array

b. index

c. false

d. float

e. scores[3]

f. dimension

g. typedef int LIST_D;