A(n) ________ operator, such as the greater than or less than symbol, can can be used in a query criterion to limits the results produced by the query

A) operand B) delimiter C) comparison D) wildcard

C

Computer Science & Information Technology

You might also like to view...

The reverse method is defined in this section. What is list1 after executing the following statements?

``` int[] list1 = {1, 2, 3, 4, 5, 6}; int[] list2 = reverse(list1); ``` a. list1 is 1 2 3 4 5 6 b. list1 is 6 5 4 3 2 1 c. list1 is 0 0 0 0 0 0 d. list1 is 6 6 6 6 6 6

Computer Science & Information Technology

A _______ -controlled loop uses a true/false condition to control the number of times that it repeats.

a. Boolean b. condition c. decision d. count

Computer Science & Information Technology