Final answer:
In a query to display orders between 7/1/2018 and 12/31/2018, you'd add the OrderDate field and set the criteria as 'Between #7/1/2018# and #12/31/2018#'. The Total row in the query should be set to 'Where', to filter records based on the specified date range.
Step-by-step explanation:
To filter and display only the orders made between 7/1/2018 and 12/31/2018 in a query, you would add the OrderDate field to the query design. Then, you would set specific criteria to include only the dates within this range. In the query's design view, under the OrderDate field, you would enter the criteria as follows: 'Between #7/1/2018# and #12/31/2018#'. This instructs the database to return only the records where the OrderDate falls within the specified range.
When defining what to change the Total row to in the query, the correct choice is 'd) Where'. The Where condition is used to specify which records are to be included in the query result set based on the criteria you have defined. The options such as Sum, Count, or Average are aggregate functions used to perform calculations on a set of values, which is not what is required in this context.