Label the elements of three-by-five two-dimensional array sales to indicate the order in which they’re set to zero by the following program segment:

```
for (int row = 0; row < sales.length; row++) {
for (int col = 0; col < sales[row].length; col++) {
sales[row][col] = 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...

A network where every user is physically connected to a central controller is

a. a circuit-switched network b. a packet-switched network c. a star network d. a mesh network

Computer Science & Information Technology

A(n) ________ is a symbol that displays on the screen in response to moving a mouse and it can be used to select objects and commands

A) tile B) pointer C) badge D) icon

Computer Science & Information Technology

An advantage to using templates is the designer's ability to lock down key parts of the page design while still enabling others to maintain the content.

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

Computer Science & Information Technology

Explain how to use supportive material on a report.

What will be an ideal response?

Computer Science & Information Technology