Match the following terms to their meanings: I. ascending II. descending III. field properties IV. primary key V. AutoNumber A. field that is unique B. define the characteristics for more detail C. generated by Access and is automatically incremented each time a record is added D. sorts a list of numeric data in lowest to highest order E. sorts a list of text data in Z to A order
What will be an ideal response?
D, E, B, A, C
You might also like to view...
Problems using switch logic to deal with many objects of different types do not include:
a. Forgetting to include an object in one of the cases. b. Having to update the switch statement whenever a new type of object is added. c. Having to track down every switch statement to do an update of object types. d. Not being able to implement separate functions on different objects.
What is sum after the following loop terminates?
``` int sum = 0; int item = 0; do { item++; sum += item; if (sum > 4) break; } while (item < 5); ``` a. 5 V c. 7 d. 8 e. 9
You can use the ________ to customize the way numbers, dates, times, and text are displayed and printed by using predefined formats or custom formats
A) Format property B) single-field index C) Data Type property D) multivalued-field index
Match the first part of the sentence with the last part of the sentence:
I. A print area II. Print order III. A table IV. A field V. A record A. is a complete set of data for an entity. B. is a set of formatted rows and columns of data. C. defines the range of data to print. D. is the sequence in which pages print. E. is an individual piece of data.