When you select Pointer Options while running a slide show, you can select ________ or ________

A) Pen; Highlighter B) Marker; Pen
C) Pen; Pencil D) Felt Pen; Ball Point Pen


A

Computer Science & Information Technology

You might also like to view...

A(n) predefined calculation performs numeric, date, and text computations on each record using data from one or more fields. _________________________

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

Computer Science & Information Technology

Create the GUI

Computer Science & Information Technology

The _____________ namespace contains most of C#’s file-processing classes

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

What is the output of the following code?

``` #include using namespace std; int main() { int matrix[4][4] = {{1, 2, 3, 4}, {4, 5, 6, 7}, {8, 9, 10, 11}, {12, 13, 14, 15}}; int sum = 0; for (int i = 0; i < 4; i++) cout << matrix[i][1] << " "; return 0; } ``` A. 3 6 10 14 B. 1 3 8 12 C. 1 2 3 4 D. 4 5 6 7 E. 2 5 9 13

Computer Science & Information Technology