Which of the following statements about background images is false?

A. Background images can be used to take the place of background colors.
B. You should avoid using background images if they make the text difficult to read.
C. You should use a background image and a background color on the same page in order to increase contrast.
D. You can choose a single image or a tiles image for the background.


Answer: C

Computer Science & Information Technology

You might also like to view...

What is the result of the following code?

 ArrayList intList = new ArrayList();
 string strOutput = "";

 intList.Add( 1 );
 intList.Add( 3 );
 intList.Add( 5 );

 foreach ( int intListItems in intList )
 {
 strOutput += ( " " + intListItems.ToString() );
 }

 MessageBox.Show( strOutput, "Mystery",
 MessageBoxButtons.OK, MessageBoxIcon.Information );

Computer Science & Information Technology

On the HOME tab, the ________ command removes all formatting from selected text

Fill in the blank(s) with correct word

Computer Science & Information Technology

Functions can be created by using the Function Arguments dialog box or by typing the function in the cell

Indicate whether the statement is true or false

Computer Science & Information Technology

When one decision-making statement is contained within another decision-making statement, they are referred to as multiple decision-making structures.

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

Computer Science & Information Technology