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

Computer Science & Information Technology

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

Computer Science & Information Technology

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); } ```

Computer Science & Information Technology

The result of a query can be sorted by using the optional _________ clause.

a. ORDER BY b. ORDER c. SORT BY d. SORT

Computer Science & Information Technology

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

Computer Science & Information Technology