All the following statements about Building Blocks are false, EXCEPT that:

A) Building Blocks can be used repeatedly only in the document that they are created.
B) only items approximately a paragraph or less can be saved as a Building Block.
C) you can individually name a Building Block that you have created.
D) watermarks and tables cannot be Building Blocks.


C

Computer Science & Information Technology

You might also like to view...

In the MySQL Query Browser, the database currently in use is referred to as the active database.

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

Computer Science & Information Technology

This type of software development focuses less on the procedures and more on defining the relationships between previously defined procedures.

A. unstructured B. structured C. object-oriented D. content-markup

Computer Science & Information Technology

What would be the result after the following code is executed?

``` int[] x = {23, 55, 83, 19}; int[] y = {36, 78, 12, 24}; x = y; y = x; ``` a. x[] = {36, 78, 12, 24} and y[] = {23, 55, 83, 19} b. x[] = {36, 78, 12, 24} and y[] = {36, 78, 12, 24} c. x[] = {23, 55, 83, 19} and y[] = {23, 55, 83, 19} d. Nothing. This is a compile error.

Computer Science & Information Technology

In a ________ relationship exists between two tables when a record in one table is related to a single record in a second table

A) one-to-many B) many-to-many C) many-to-one D) one-to-one

Computer Science & Information Technology