Built-in Word macros can be found from setting the Macros in drop-down list to ________ in the Macros dialog box

A) Word commands B) Global template
C) All active templates and documents D) Normal.dotm


A

Computer Science & Information Technology

You might also like to view...

What is the output of the following program when the button is clicked on?

``` Private Sub btnDisplay_Click(...) Handles btnDisplay.Click Dim result As Double Dim number(4) As Double FillArray(number) result = SumArray(number) txtBox.Text = CStr(result) End Sub Sub FillArray(ByRef anyArray() As Double) Dim temp() As String = IO.File.ReadAllLines("Data.txt") For i As Integer = 0 To 4 anyArray(i) = CDbl(temp(i)) Next End Sub Function SumArray(anyArray() As Double) As Double Dim total As Double total = 0 For i As Integer = 0 To 4 Step 2 total += anyArray(i) Next Return total End Function ``` Assume the five rows of the file Data.txt contain the following entries: 1, 3, 5, 7, 9 (A) 0 (B) 25 (C) 15 (D) None of the above

Computer Science & Information Technology

When you want to display text on a form but not allow the user to change the text, you use a ____________.

a. String control b. Label control c. Text control d. Font control

Computer Science & Information Technology

A huge benefit to using referential ___________________ is that the data in your databases is consistent.

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

Computer Science & Information Technology

?When using fact-finding techniques, asking what is being done is the same as asking what could or should be done.

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

Computer Science & Information Technology