In the accompanying figure, item 2 points to the ____.

A. resize pointer
B. edge pointer
C. box edge
D. move pointer


Answer: A

Computer Science & Information Technology

You might also like to view...

What is the difference in the execution of the Do Until Loop (first example) and the Do Loop Until (second example)?

``` ' First Example sngPayAmount = 200 Do Until sngPayAmount > 150 sngPayAmount = sngPayAmount – 50 Loop 'Second Example sngPayAmount = 200 Do sngPayAmount = sngPayAmount – 50 Loop Until sngPayAmount > 150 ``` a. Both loops are executed in an identical manner. b. The first loop will never be executed while the second loop will execute once. c. The first loop will execute one more time than the second loop. d. The first loop will never be executed while the second is an infinite loop.

Computer Science & Information Technology

Document relative links specify a path from the site root folder to the linked document.

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

Computer Science & Information Technology

You can create a simple report using Form tool.

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

Computer Science & Information Technology

Which predicate uses one of six operators to compare one value expression to another value expression?

a. Comparison b. BETWEEN c. IN d. LIKE e. IS NULL

Computer Science & Information Technology