Match the following terms to their meanings:

I. delimiter
II. Show row
III. Criteria row
IV. Table row
V. query

A. used to set rules that determine which records will display
B. displays a data source
C. special character that surrounds a criterion's value
D. enables you to ask questions about data in a database
E. controls whether a field will be displayed in query results

C, E, A, B, D

Computer Science & Information Technology

You might also like to view...

________ can be linear, curved, or follow a predetermined shape

Fill in the blank(s) with correct word

Computer Science & Information Technology

int puzzle(int start, int end){  if (start > end)     return start - end;  else if (start == end)     return start + end;  else     return end * puzzle(start + 1, end - 1);} Consider the accompanying definition of a recursive function. What is the output of the following statement?cout << puzzle(5, 10) << endl;

A. 720 B. 5040 C. 5760 D. 10800

Computer Science & Information Technology