Given the following array declaration, what is the value stored in the scores[1][1] element?
?
int scores[3][3] = { {1, 2, 3}, {4, 5, 6}, {7, 8, 9} };

A. 1
B. 4
C. 7
D. 5

Answer: D

Computer Science & Information Technology

You might also like to view...

The default font size in Microsoft Word is 11

Indicate whether the statement is true or false

Computer Science & Information Technology

When the layout editor is open in Design view, the ________ appears at the right side of the IDE. This window shows the layouts and views (GUI components) that comprise the GUI and their parent-child relationships—for example, a layout (the parent) might contain many nested views (the children), including other layouts.

a. Project window b. Properties window c. Palette d. Component Tree

Computer Science & Information Technology