To use Filter By Form to filter records, click the ____ button on the Home tab and then click Filter By Form.

A. Advanced
B. Filter
C. Selection
D. Find


Answer: A

Computer Science & Information Technology

You might also like to view...

If there were no base case for this function, we would get:

``` 1 bool search( Node ptr, Bird & bird, Bird dove ) 2 { 3 if ( ptr == NULL ) 4 return false; 5 if ( ptr->info == dove ) { 6 bird = ptr->info; 7 return true; 8 } 9 return search( ptr->next, bird, dove ); 10 } ``` which is called for a linked list (where start points to the first node) using the lines of code: ``` if ( search( start, bird, dove ) ) cout << “search successful” << endl; ``` A. a compiler error B. infinite recursion C. a runtime error D. an infinite function

Computer Science & Information Technology

Design View provides maximum flexibility for designing a form, but requires more time on your part.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

The item marked ____ in the accompanying figure is the Show All Layers as Outlines icon.

A. 1 B. 3 C. 5 D. 6

Computer Science & Information Technology

The ____ command fixes damaged or corrupted tables.

A. FIX TABLE B. ALTER TABLE C. REPAIR TABLE D. RESTORE TABLE

Computer Science & Information Technology