In the accompanying figure, Item 3 points to the Apply button, which you click to apply the header and footer to the ____ slide.

A. selected
B. title
C. master
D. last


Answer: A

Computer Science & Information Technology

You might also like to view...

Which of the following examples correctly uses an input box to assign a value to an integer, and returns the integer to the calling program using a reference parameter?

a. ```Sub GetInput(ByVal intNumber As Integer) intNumber = CInt(InputBox(“Enter an Integer”)) End Sub ``` b. ```Sub GetInput(ByRef intNumber As Integer) intNumber = CInt(InputBox(“Enter an Integer”)) End Sub ``` c. ```Sub GetInput(ByRef intNumber As Integer) intNumber = CInt(InputBox(“Enter an Integer”)) Return intNumber End Sub ``` d. ```Sub GetInput() Dim intNumber As Integer intNumber = CInt(InputBox(“Enter an Integer”)) End Sub ```

Computer Science & Information Technology

What is output of the following code:

``` public class Test { public static void main(String[] args) { int[] x = {120, 200, 016}; for (int i = 0; i < x.length; i++) System.out.print(x[i] + " "); } }``` a. 120 200 16 b. 120 200 14 c. 120 200 20 d. 016 is a compile error. It should be written as 16.

Computer Science & Information Technology

Charted values that originate in a worksheet are called:

A) data markers. B) data points. C) labels. D) legends.

Computer Science & Information Technology

?Most browsers underline hyperlinks and display them in a(n) ____ font.

A. ?blue B. ?italicized C. ?large D. ?flashing

Computer Science & Information Technology