You can insert a ________, such as a page number or author, into a header or footer in a document

Fill in the blank(s) with correct word


field

Computer Science & Information Technology

You might also like to view...

What does this code do?

 void PickRandomNumbers()
 {
 int intNumber1;
 double dblNumber;
 int intNumber2;
 Random objRandom = new Random();

 intNumber1 = objRandom.Next();
 dblNumber = 5 * objRandom.NextDouble();
 intNumber2 = objRandom.Next( 1, 10 );

 lblInteger1.Text = Convert.ToString( intNumber1 );
 lblDouble1.Text = Convert.ToString( dblNumber );
 lblInteger2.Text = Convert.ToString( intNumber2 );

 } // end method PickRandomNumbers

Computer Science & Information Technology

________ can record your passwords to websites

A) Spy Sweepers B) Spyware C) Keystrokers D) Adware

Computer Science & Information Technology

FIGURE AC 6-1Referring to Figure AC 6-1 above, the data source for the mail merge is a(n) ____.

A. Access database B. Excel worksheet C. Word table D. you cannot tell from the figure

Computer Science & Information Technology

When the ++ operator appears before a variable, it is called a ____ increment operator.

A. basic B. standard C. postfix D. prefix

Computer Science & Information Technology