Which of the following would you use to reference the variable located in the second row, second column of the scores two-dimensional array?

A. scores[0][0]
B. scores[1][1]
C. scores{1, 1}
D. scores[2,2]


Answer: B

Computer Science & Information Technology

You might also like to view...

Programmers usually refer to the chained data structures making up a linked list as ____.

A. handles B. nodes C. classes D. frames

Computer Science & Information Technology

________ track loan payments over the life of a loan

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

Computer Science & Information Technology

A compilation of topics, names, and terms accompanied by page numbers that display at the end of a document is known as a(n) ________

A) glossary B) index C) endnote D) directory

Computer Science & Information Technology

In the following statements, the printf statement will be executed ____ times.count = 10;while (count <= 10)    printf("%d ",count);

A. 0 B. 1 C. 10 D. an infinite number of

Computer Science & Information Technology