The _______ button is used to sort records in order from smallest to largest amount

A) Sort Ascending

B) Sort Descending

C) Filter

D) Query

A

Computer Science & Information Technology

You might also like to view...

Which of the following audio file types is supported by all computers running Windows?

A) .mp3 B) .rm C) .wav D) .midi

Computer Science & Information Technology

Why is the following Select Case block invalid in Visual Basic?

``` Select Case myName.Substring(0, 1) Case myName < "D" txtBox.Text = "Your name starts with A, B, or C" End Select ``` (A) There should not be a standard conditional expression in a value list. (B) There are not enough Case statements. (C) There is no selector. (D) myName.Substring(0, 1) is not valid where it is.

Computer Science & Information Technology