To help the presenter, you can display a mouse-over area by:
A) italicizing the text in the area. B) bolding the text in the area.
C) changing the background color of the area. D) surrounding the area with a border.
D
You might also like to view...
The ____ data type is a number automatically generated by Access that produces unique values for each record.
A. Number B. RecordNumber C. OLE Object D. AutoNumber
Here is a complete function that purports to return one of the roots of a quadratic given suitable parameters. It looks good, but fails to compile. Why?
``` //returns one of the roots of the quadratic equation //a*x*x + b*x + c = 0 a!= 0 double root1 (double a, double b, double c) { return (-b + sqrt(b*b-4*a*c))/(2*a); } ```
The result of a query can be sorted by using the optional _________ clause.
a. ORDER BY b. ORDER c. SORT BY d. SORT
When using Expression Builder, you can ________ an item in the Expression Categories or Expression Values sections to automatically add it to the expression box
Fill in the blank(s) with correct word