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 operation will retrieve the item at position i in anArray?

A. anArray[i] = val; B. val[i] = anArray[i]; C. val = anArray[i]; D. i[val] = anArray;

Computer Science & Information Technology

Which of the following statements is false?

a. ToggleGroup method getSelectedToggle returns the Toggle that’s currently selected. Class RadioButton is one of several controls (others are RadioButtonMenuItem and ToggleButton) that implements interface Toggle. b. Each mouse event handler you define must provide one parameter of type MouseEvent. When the event occurs, this parameter contains information about the mouse event, such as its location, whether any mouse buttons were pressed, which node the user interacted with and more. c. Each layout pane has a getChildren method that returns an ObservableList collection containing the layout’s child nodes. d. All JavaFX shapes inherit indirectly from class Shape in the javafx.scene package.

Computer Science & Information Technology