The less precise way to move objects in report Layout view is to ____.

A. use the Move command to move objects
B. use the arrow keys on the keyboard to move objects
C. drag objects
D. use the insert key on the keyboard to move objects


Answer: C

Computer Science & Information Technology

You might also like to view...

A(n) __________ algorithm is a technique for stepping through an array and rearranging its contents in order.

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

Computer Science & Information Technology

Show the output of the following code:

``` String[] array = {"red", "green", "blue"}; ArrayList list = new ArrayList<>(Arrays.asList(array)); list.add(0, "red"); System.out.println(list); ``` a. ["red", "green", "blue", "red"] b. ["red", "green", "blue"] c. ["red", "red", "green", "blue"] d. ["red", "green", "red", "blue"]

Computer Science & Information Technology

Limiting the number of clicks or taps to get to what you want matters most when:

a. a Web site contains a very large number of pages b. you have to go down the same path in a site frequently c. the content of a site is boring

Computer Science & Information Technology

A column is a series of items arranged vertically

Indicate whether the statement is true or false

Computer Science & Information Technology