Label the elements of a 3-by-5 one-dimensional array sales to

```
for ( row = 0; row < 3; row++ )
for ( column = 0; column < 5; column++ )
sales[ row ][ column ] = 0;
```


```
sales[ 0 ][ 0 ], sales[ 0 ][ 1 ], sales[ 0 ][ 2 ], sales[ 0 ][ 3 ],
sales[ 0 ][ 4 ], sales[ 1 ][ 0 ], sales[ 1 ][ 1 ], sales[ 1 ][ 2 ],
sales[ 1 ][ 3 ], sales[ 1 ][ 4 ], sales[ 2 ][ 0 ], sales[ 2 ][ 1 ],
sales[ 2 ][ 2 ], sales[ 2 ][ 3 ], sales[ 2 ][ 4 ]
```

Computer Science & Information Technology

You might also like to view...

To divide BigDecimal b1 by b2 and assign the result to b1, you write _________.

a. b1.divide(b2); b. b2.divide(b1); c. b1 = b1.divide(b2); d. b1 = b2.divide(b1); e. b2 = b2.divide(b1);

Computer Science & Information Technology

Changing the color of text is an example of formatting text

Indicate whether the statement is true or false

Computer Science & Information Technology

In what situations would you change the default data field calculations settings of a PivotTable?

What will be an ideal response?

Computer Science & Information Technology

The Windows SIM tool would be used to create or edit answer files used for unattended installation of Windows 8.1

Indicate whether the statement is true or false

Computer Science & Information Technology