identify the following:

In the array declaration
double score[5];

a) The array name
b) The base type
c) The declared size of the array
d) The smallest and largest index values this array can have.
e) Give one of the indexed variables (a.k.a. elements) of this array.

a) The array name is score. b) The base type is double. c) The declared
size is 5. d) The smallest index is 0, and the largest array index is 4. (as in all arrays)
e) score[2] is one of the indexed variables.

Computer Science & Information Technology

You might also like to view...

Windows into a secure area may need to be _____________________ to obscure the view through them while at the same time allowing the area to be monitored.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Structured programming embodies a top-down design philosophy.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology