A table of figures is a list of all the ____________________ for tables, charts, pictures, graphics, and equations in a document.

Fill in the blank(s) with the appropriate word(s).


captions

Computer Science & Information Technology

You might also like to view...

The compiler always pairs an else with _______________

Fill in the blank(s) with the appropriate word(s).

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

In the Skinning window, you can select a video's playback interface, or skin.

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

Computer Science & Information Technology

The ________ keyword instructs Access to return the specific fields from one or more tables or queries

A) SELECT B) FROM C) WHERE D) ORDER BY

Computer Science & Information Technology