Which of the following will load a two-dimensional array with two rows and four columns of integers?

a.
```
var myArray = [ (0)(1)(2)(3)(4), (5)(6)(7)(8) ];
```

b.
```
var myArray = [ [0, 1, 2, 3 ], [4, 5, 6, 7] ];
```

c.
```
var myArray = [ (0, 1, 2, 3), (4, 5, 6, 7) ];
```

d.
```
var myArray = [ (0, 1),(2, 3),(4, 5), (6, 7) ];
```

b.
```
var myArray = [ [0, 1, 2, 3 ], [4, 5, 6, 7] ];
```

Computer Science & Information Technology

You might also like to view...

Social networking can be traced back to online services, such as CompuServe, Prodigy, and America Online.

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

Computer Science & Information Technology

What is a technique that feeds random input data into applications just to see what happens to the results?

A. Brute force B. Concurrent users C. Load test D. Fuzzing

Computer Science & Information Technology