To show a reviewer's name, it must be entered in the __________ box of Word options.

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

User name

Computer Science & Information Technology

You might also like to view...

The find method, used by the remove, contains, and addAfter operations, returns -1 if an element is not found in an array based implementation of a list collection. Why doesn’t it throw an Exception in this case?

What will be an ideal response?

Computer Science & Information Technology

The code below needs to write “hello world” the screen eight (8) times. You can replace, remove, or add one character in the code. Can you find 2 solutions?

``` int c = 0, t = 9; while( c < t) { cout << “\n hello world”; ++c; } ```

Computer Science & Information Technology