Answer:
C. Apply a sort
Explanation:
From the list if options A through D, only option C best answer what's been illustrated in the question.
For a query to be in a given order, it has to be sorted, in other words, you apply a sort.
It should also be noted that, when sorting a query, the result will be sorted based on the fields in the table.
Take for instance,
The fields of a table named table1 are;
SN
NAME
AGE
You will sort the records by SN or by NAME or by AGE or by combination of two of those fields.
Sorting a query will place the records in a defined logical order which could in ascending order or descending order.