Consider the statement int list[10][8];. Which of the following about list is true?

A. list has 10 rows and 8 columns.
B. list has 8 rows and 10 columns.
C. list has a total of 18 components.
D. list has a total of 108 components.


Answer: A

Computer Science & Information Technology

You might also like to view...

An absolute pixel value will automatically determine the proper number of pixels to dedicate to a frame.

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

Computer Science & Information Technology

The outline of a selection is called the ____ of the selection.

A. alias B. foreground C. side D. edge

Computer Science & Information Technology

Line 5 in the function below can be replaced with ____. 1 void strcopy (char string1[], char string2[]) 2 { 3   int i = 0; 4 5   while (string2[i] != '\0') 6   { 7     string1[i] = string2[i]; 8     i++; 9   }10   string1[i] = '\0';11 }

A. while (string2[i]) B. while (!string2[i]) C. while (string2[i] < '\0') D. while (string2[i] != '\n')

Computer Science & Information Technology

The ____ attribute supports several values to provide different formatting options.

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

Computer Science & Information Technology