answered to pass
An array is a(n) ____ of values in computer memory. - correct answer ✔✔list
Array elements all have the same ____ in common. - correct answer ✔✔data type
The number of elements in an array is called the ____ of the array. - correct answer ✔✔size
A(n) ____ is another name for a subscript. - correct answer ✔✔index
All array elements have the same group ____. - correct answer ✔✔name
In all languages, subscript values must be sequential ____. - correct answer ✔✔integers
Suppose that you have declared a numeric array named numbers, and two of its elements are
numbers[1] and numbers[5]. You know that ____. - correct answer ✔✔there are exactly three elements
between those two elements
A program contains an array that holds all the names of the days of the week. Which of the following is
true? - correct answer ✔✔the highest subscript is 6
Providing array values is sometimes called ____. - correct answer ✔✔populating the array
An array can be used to replace ____. - correct answer ✔✔nested decisions
The true benefit of using an array lies in your ability to use a ____ as a subscript to the array. - correct
answer ✔✔variable
, Named ____ hold values that do not change during a program's execution - correct answer ✔✔constants
Besides making your code easier to modify, using a ____ makes the code easier to understand. - correct
answer ✔✔named constant
One advantage to using a named constant is that the statement becomes ____. - correct answer ✔✔self-
documenting
When you search through a list from one end to the other, you are performing a ____. - correct answer
✔✔linear search
If you declare a variable to be Boolean, you can set its value to ____. - correct answer ✔✔true or false
Which statement is true of arrays? - correct answer ✔✔Only whole numbers can be used as array
subscripts.
A ____ relates parallel arrays. - correct answer ✔✔subscript
Parallel arrays are most useful when value pairs have a(n) ____ relationship. - correct answer ✔✔indirect
A ____ search starts looking in the middle of a sorted list, and then determines whether it should
continue higher or lower. - correct answer ✔✔binary
To search an array for a(n) ____ match, you can store either the highest or lowest value
of each range for comparison. - correct answer ✔✔range
The number of bytes in an array is always a multiple of the number of ____ in an array. - correct answer
✔✔elements
Every array has a(n) ____ size. - correct answer ✔✔finite