The ________ is located at the bottom of the PowerPoint window, while in Normal view, and provides a place to type information that the speaker wants to remember

Fill in the blank(s) with correct word


Notes pane

Computer Science & Information Technology

You might also like to view...

1. An event is ___.

A. something that happens, such as mouse clicks, keystrokes, and touches (for touch enabled devices), while a program is running and interrupts the program’s flow B. an object that listens for things, such as mouse clicks, keystrokes, and touches (for touch enabled devices) C. a function that will be executed when mouse clicks, keystrokes, or touches (for touch enabled devices) occur

Computer Science & Information Technology

Enter the following script named savefiles, and give yourself execute permission to the file:



a. Which error message do you receive when you execute this script?
Rewrite the script so that the error does not occur, making sure the output
still goes to savethem.
b. What might be a problem with running this script twice in the same
directory? Discuss a solution to this problem.

Computer Science & Information Technology

What is the output of the following code?

``` #include using namespace std; void f1(int x, int &y, int* z) { x++; y++; (*z)++; } int main() { int i = 1, j = 1, k = 1; f1(i, j, &k); cout << "i is " << i; cout << " j is " << j; cout << " k is " << k << endl; return 0; } ``` a. i is 2 j is 2 k is 2 b. i is 1 j is 2 k is 3 c. i is 1 j is 1 k is 1; d. i is 1 j is 2 k is 2

Computer Science & Information Technology

In the Find and Replace dialog box, to use ? and * you need to select which option?

A) Use Wildcards B) Match case C) Sounds like D) Find whole words only

Computer Science & Information Technology