If you are accessing each of the elements of a two dimensional array with 6 rows and 15 columns, which of the following would be a possible correct loop header(s)?

a) for (int r = 0; r < 5; r++)
for (int c = 0; c < 14; c++)
b) for (int r = 0; r <= 6; r++)
for (int c = 0; c <=15; c++)
c) for (int r = 0; r < 6; r++)
for (int c = 0; c < 15; c++)
d) for (int r = 0; r < 90; r++)


c) for (int r = 0; r < 6; r++)
for (int c = 0; c < 15; c++)

Computer Science & Information Technology

You might also like to view...

The __________ is the core of the operating system that communicates directly with the hardware.

a. kernel b. IOCS c. file system d. BIOS

Computer Science & Information Technology

Use the ___________________ property to resize or scale the background image.

a. background-image b. background-clip c. background-origin d. background-size

Computer Science & Information Technology

Due to the frequency ranges used, most phones will work in both the United States and Europe

Indicate whether the statement is true or false

Computer Science & Information Technology

To use the Find command for filtering records in a report, click the Find button in the Find group on the ____ tab.

A. File B. Home C. Create D. Database Tools

Computer Science & Information Technology