By default, Word inserts a(n) ________ at the beginning of a caption created in Word 2010

A) number B) letter C) two-word title D) ScreenTip


A

Computer Science & Information Technology

You might also like to view...

Which of the following statements are true?

a. Use the private modifier to encapsulate data fields. b. Encapsulating data fields makes the program easy to maintain. c. Encapsulating data fields makes the program short. d. Encapsulating data fields helps prevent programming errors.

Computer Science & Information Technology

What is the output for the second statement in the main method?

``` public class Foo { static int i = 0; static int j = 0; public static void main(String[] args) { int i = 2; int k = 3; { int j = 3; System.out.println("i + j is " + i + j); } k = i + j; System.out.println("k is " + k); System.out.println("j is " + j); } } ``` a. k is 0 b. k is 1 c. k is 2 d. k is 3

Computer Science & Information Technology

When using Windows, to select all the folders in a window you simultaneously press the ________ and A keys

A) Alt B) Ctrl C) cmd D) Shift

Computer Science & Information Technology

When using the Lookup Wizard, the ________ row is the row where new records or values are entered

Fill in the blank(s) with correct word

Computer Science & Information Technology