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

```
for (size_t row{0}; row < sales.size(); ++row) {
for (size_t column{0}; column < sales[row].size(); ++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...

When modifying a slide master, the right side of your window displays the slide master for each layout in the selected theme

Indicate whether the statement is true or false

Computer Science & Information Technology

________ expand across the available space in the container and if additional space is needed a horizontal scroll bar is added

A) Multiples B) Vertical multiples C) Horizontal multiples D) Bidirectional multiples

Computer Science & Information Technology

_______________ uses chips embedded in mobile devices that create electromagnetic fields when these devices are close to each other.

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

Computer Science & Information Technology

Default arguments can be used with an overloaded operator.

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

Computer Science & Information Technology