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
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)
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
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.
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