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 ]
```
Computer Science & Information Technology
You might also like to view...
VoIP is an Internet standard that permits file uploading and downloading with other computers on the Internet.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology
WPA2 is based on the final IEEE 802.11F standard ratified in June 2004.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology