To apply a theme, you click Themes in the:

A) Themes group on the DESIGN tab. B) Arrange group on the FORMAT tab.
C) Arrange group on the DESIGN tab. D) Themes group on the FORMAT tab.


A

Computer Science & Information Technology

You might also like to view...

When clicked, in the Solution Explorer window will expand nodes and will collapse nodes.

a) minus boxes; plus boxes b) plus boxes; minus boxes c) up arrows; down arrows d) left arrows; right arrows

Computer Science & Information Technology

What does this code do? What is assigned to strResult when the following code executes?

 string strWord1 = "CHORUS";
 string strWord2 = "d i n o s a u r";
 string strWord3 = "The theme is string.";
 string strResult;

 strResult = strWord1.ToLower();
 strResult = strResult.Substring( 4 );
 strWord2 = strWord2.Replace( " ", "" );
 strWord2 = strWord2.Substring( 4, 4 );
 strResult = strWord2 + strResult;

 strWord3 = strWord3.Substring(
 strWord3.IndexOf( " " ) + 1, 3 );

 strResult = strWord3.Insert( 3, strResult );

Computer Science & Information Technology

____ are used to specify which elements in a container are to be operated on when an algorithm is called.

a. Iterators b. Walkers c. Sequencers d. Indexers

Computer Science & Information Technology

Using computers for entertainment had by the early 1980s become an important, not to mention financially lucrative, industry and that growth has continued unabated.

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

Computer Science & Information Technology