Which of the following is a TRUE statement about sorting table data?

A) You can only sort numeric data.
B) You cannot sort a Word table by dates.
C) You can sort a Word table by up to three categories.
D) Columns of data can be sorted alphabetically, but not numerically or chronologically.


C

Computer Science & Information Technology

You might also like to view...

Which of the following could be a correct prototype of a function that will overload the extraction operator (>>) for objects of type car (already defined).

a) friend istream& operator >> (istream&, const car&); b) friend istream& operator >> (istream&, car&); c) istream& car::operator >> (istream&, const car&); d) istream& operator >> (istream&, const car&);

Computer Science & Information Technology

What is the output of the following code?

``` #include using namespace std; int main() { int matrix[4][4] = {{1, 2, 3, 4}, {4, 5, 6, 7}, {8, 9, 10, 11}, {12, 13, 14, 15}}; int sum = 0; for (int i = 0; i < 4; i++) cout << matrix[i][1] << " "; return 0; } ``` A. 3 6 10 14 B. 1 3 8 12 C. 1 2 3 4 D. 4 5 6 7 E. 2 5 9 13

Computer Science & Information Technology

A selection sort application would take approximately ___________ times as long to run on a 128-element array as on a 32-element array.

What will be an ideal response?

Computer Science & Information Technology

____________________ sounds are synchronized with the Timeline and begin playing as soon as enough data has downloaded.

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

Computer Science & Information Technology