Final Answer:
A range of values may be specified as selection criteria by using the D) BETWEEN operator.
Step-by-step explanation:
In database queries, the BETWEEN operator is utilized to define a range of values for selection criteria. When specifying a condition using BETWEEN, you can set a lower and upper limit, and the query will retrieve records that fall within that range.
This is particularly useful when filtering data based on numeric or date ranges. For example, you could construct a query to retrieve all records where a certain column's value is between a specified range of numbers or dates. Options 1) AND, 2) OR, and 3) NOT are logical operators used for different conditions, but they do not specifically represent a range.
Option D (BETWEEN) is the answer.