Guides are ____________________ horizontal and vertical lines that are used to help position selections within an image.

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


non-printing

Computer Science & Information Technology

You might also like to view...

Which of the following code examples is a function that will accept three integer parameters, calculate their average, and return the result?

a. ```Function Average(ByVal intX As Integer, ByVal intY As Integer, _ ByVal intZ As Integer) As Single Average = (intX + intY + intZ) / 3 End Function ``` b. ```Function Average(ByVal intX As Integer, ByVal intY as Integer, _ ByVal intZ As Integer) As Single Average = intX + intY + intZ / 3 Return Average End Function ``` c. ```Function Average(ByRef intX As Integer, ByRef intY as Integer, _ ByRef intZ As Integer, ByRef Average As Double) Average = (intX + intY + intZ) / 3 End Function ``` d. ```Function Average(ByVal intX As Integer, ByVal IntY as Integer, _ ByVal intZ As Integer) As Single Return (intX + intY + intZ) / 3 End Function ```

Computer Science & Information Technology

In a mail merge document, this document contains the text that remains constant

A) Main document B) Data source C) Merge document

Computer Science & Information Technology

Match the following Outlook Express folders to their descriptions:

I. Inbox A. Stores copies of messages that you have sent. II. Outbox B. Stores messages that have been sent to you. III. Sent Items C. Stores messages that you are in the process of writing. IV. Drafts D. Contains folders that are stored on your computer and mail server. V. Local Folders E. Stores messages that you want to send.

Computer Science & Information Technology

____________________ form fields temporarily store data that needs to be sent to a server with the rest of a form, but that a user does not need to see.

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

Computer Science & Information Technology