One of the techniques to help manage your creations is:

A. Use style comments throughout, especially at the bottom of the file.
B. Divide your style sheet into sections, with comments marking the page headings.
C. Keep your style sheets as small as possible, and break them into separate files if necessary.
D. Choose several organizing schemes.


Answer: C

Computer Science & Information Technology

You might also like to view...

What do the following statements do?

``` ifstream stream; stream.open("scores.txt"); ``` a. Open a file for output, the statement fails if the file already exists. b. Open a file for output, the contents of the file is destroyed if the file already exists. c. Open a file for input. d. Open a file for input, the statement fails if the file does not exis

Computer Science & Information Technology

You designate the portion of the workbook to print on the Area tab in Backstage view.

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

Computer Science & Information Technology

What is the output of the following C++ code?  int x = 55;int y = 5;switch (x % 7){case 0:case 1:  y++;case 2:case 3:  y = y + 2;case 4:  break;case 5:case 6:  y = y - 3;}  cout

A. 2 B. 5 C. 8 D. 10

Computer Science & Information Technology

Item B in the accompanying figure shows which of the following?

A. The preview area B. The animation area C. A text box D. A drawing box

Computer Science & Information Technology