You can type and format comments in the _____ in Normal view.

A. Outline tab
B. Slide pane
C. Notes pane
D. Slides tab


Answer: C

Computer Science & Information Technology

You might also like to view...

A check box control named chkFirst contains the following code in its CheckedChanged event procedure. Which of the following is true concerning the use of this control?

``` Dim message As String = "hello' MessageBox.Show(message) ``` (A) The message "hello" will appear when the user checks the control but not when it is unchecked. (B) The message "hello" will appear when the user unchecks the control but not when it is checked. (C) The message "hello" will appear when the user checks the control and again when it is unchecked. (D) The message "hello" will not appear using this code.

Computer Science & Information Technology

Copy all files from current directory to backup directory

What will be an ideal response?

Computer Science & Information Technology

In the Dynamic Partitioning technique of memory management, the placement algorithm that chooses the block that is closest in size to the request is called __________ .

A) ?first-fit ? B) ?best-fit ? C) ?last-fit ? D) ?next-fit

Computer Science & Information Technology

Which of the following statements are correct?

a. char[][][] charArray = new char[2][2][]; b. char[2][2][] charArray = {'a', 'b'}; c. char[][][] charArray = {{'a', 'b'}, {'c', 'd'}, {'e', 'f'}}; d. char[][][] charArray = {{{'a', 'b'}, {'c', 'd'}, {'e', 'f'}}};

Computer Science & Information Technology