To check only spelling in the document, click the ____ in the Spelling and Grammar dialog box to deselect it.

A. Check grammar check box
B. Grammar only check box
C. Spelling only check box
D. none of the above

Answer: A

Computer Science & Information Technology

You might also like to view...

________ validation presents the user with a list of data values from which the user can choose

A) Directory B) Registry C) Index D) List

Computer Science & Information Technology

What value is assigned to decTaxes by the following program segment, assuming that the user enters 50000 into the textbox txtSalary.Text?

Dim decSalary, decTaxes As Decimal decSalary = CDec (txtSalary.Text) If (decSalary > 50000) Then decTaxes = .40 * decSalary ElseIf (decSalary > 40000) Then decTaxes = .30 * decSalary ElseIf (decSalary > 30000) Then decTaxes = .20 * decSalary Else decTaxes = .10 * decSalary End If a. 20000 b. 15000 c. 10000 d. 5000

Computer Science & Information Technology