There are several ways to do a compile-time initialization of two-dimensional arrays. All of the following are valid ways EXCEPT ____.

A. int [, ] anArray = {{100, 100, 100} {100, 100, 100}};
B. int [ , ] anArray = new int [ , ] {{100, 100, 100} {100, 100, 100}};
C. int [ ,  ] anArray = new int [2, 3 ] {{100, 100, 100} {100, 100, 100}};
D. int [ ] anArray = new int [10 ] {{100, 100, 100} {100, 100, 100}};


Answer: D

Computer Science & Information Technology

You might also like to view...

To access the previous Windows desktop in Windows 8, the user would click the ________ tile

A) Go B) Desktop C) Forward D) Jump

Computer Science & Information Technology

Why might you want to import data rather than creating a new database from scratch?

What will be an ideal response?

Computer Science & Information Technology

Item E in the accompanying figure is used to set the _______________ of the audio player plugin.

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

Computer Science & Information Technology

In a VLOOKUP formula, what does the argument column_index_number mean?

A) This is the secret INDEX number that each column in an Excel worksheet has. B) This is the number of the column within the selected table_array where the lookup result is located. C) This is a numerical representation of the letters at the top of a worksheet. For example, A = 1, B = 2, etc. D) This is numbers that you assign to columns in your worksheet.

Computer Science & Information Technology