The statement ___________ assigns an array of three columns and three rows to two- dimensional int array intArray.
a) int[][] intArray = { { 1 2 3 } { 4 5 6 } { 7 8 9 } };
b) int[,] intArray = new int( { { 1 2 3 } { 4 5 6 } { 7 8 9 } };
c) int[,] intArray = { { 1 2 3 } { 4 5 6 } { 7 8 9 } };
d) int[] intArray = { { 1 2 3 } { 4 5 6 } { 7 8 9 } } );
Answer: C
You might also like to view...
E-mail ________ are software programs such as Microsoft Outlook that run on your computer and download messages to your computer
Fill in the blank(s) with correct word
The first slide of the presentation is the master slide
Indicate whether the statement is true or false
A(n) ____________________ is the person(s), equipment, or materials used to complete a task in a project.
Fill in the blank(s) with the appropriate word(s).
Unless you specify otherwise, in what manner are variables passed to functions?
A. by value B. by reference C. by invocation D. by parameter