List the elements of the three-by-five jagged array sales in the order in which they’re set to 0 by the following code segment:
```
for (var row = 0; row < sales.Length; ++row)
{
for (var 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 ]
```
You might also like to view...
The command show ip route is used on a router to do which of the following? (Select all that apply.)
a. Set a static route b. Configure a static route c. Display the configured routes on a router d. Display how often routing updates are sent
When you allow others to only open shared files, they can save changes to the original file
Indicate whether the statement is true or false
The most common way to prepare an application to detect injections is to ensure that the application ____ the data being received by the user before sending it to the database.
A. encrypts B. validates C. encapsulates D. authorizes
_________ means that the phone or other device connects to a PC via USB and accesses the Internet using the PC's Internet connection
a. Tethering b. Portable hotspot c. Porting d. None of the above