The Hyperlink Address property is found on the _____ tab of the property sheet.

A. Format
B. Data
C. Event
D. Other


Answer: A

Computer Science & Information Technology

You might also like to view...

By creating a __________, a user can cause a series of command language commands to be executed in sequence.

a. batch file b. command file c. primitive file d. source file

Computer Science & Information Technology

Regarding flagged errors, use of the passive voice is identified as a grammar error

Indicate whether the statement is true or false

Computer Science & Information Technology

When you use the Place command to import a video, the _______________ appears as a loaded media pointer.

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

Computer Science & Information Technology

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

1. The following lines of code are correct. If age >= 13 And < 20 Then txtOutput.Text = ";You are a teenager." End If 2. The Else part of an If block may be omitted if no action is associated with it. 3. Given that x = 7, y = 2, and z = 4, the following If block will display "TRUE". If (x >y) Or (y > z) Then txtBox.Text = "TRUE" End If 4. Given that x = 7, y = 2, and z = 4, the following If block will display "TRUE" If (x > y) And (y > z) Then txtBox.Text = "TRUE' End If 5. Every If block must have a Then and an Else.

Computer Science & Information Technology