________ is the correct way to create a new two-dimensional integer array myArray with 5 rows and 5 columns.

```
a) int myArray[][] = new int[ 5 ][ 5 ]
b) int myArray[ 2 ] = new int( 5, 5 )
c) int myArray[ , ] = new int[ 5, 5 ]
d) int myArray[] = new int[ 5, 5 ]
```


a) int myArray[][] = new int[ 5 ][ 5 ]

Computer Science & Information Technology

You might also like to view...

This type of variable is defined inside a function and is not accessible outside the function.

a. global b. reference c. local d. counter e. None of these

Computer Science & Information Technology

Which of the following is not a legitimate statement?

a. Set MyVariable= “X” b. Set MyVariable = 98 c. Set MyVariable = Lizzy d. Set MyVariable = 2 * 64 + 83

Computer Science & Information Technology

When converting selected text to a table, Word uses the all of the following characters to determine the number of columns EXCEPT for:

A) carriage returns. B) hyphens. C) commas. D) tabs.

Computer Science & Information Technology

To deselect multiple layers when working on a Windows machine, click any layer (within the selection) on the Layers panel with [___________] for each layer you want to deselect.

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

Computer Science & Information Technology