In a Word document, a(n) ________ is a graphic that can be moved independently of the surrounding text characters

A) inline object B) floating object C) object anchor D) drawing object


B

Computer Science & Information Technology

You might also like to view...

Assume that an integer array named intValues contains intNUM elements. Which of the following code segments most efficiently finds the largest element in the array and displays it in a label named lblMaxValue? Assume that values have already been inserted into the array.

a. ```For intIndex = 0 To intNUM – 1 If (intValues(intIndex) > CInt(txtMax.Text)) Then lblMaxValue.Text = intValues(intIndex).ToString End If Next intIndex ``` b. ```intMax = intValues(0) For intIndex = 1 to intValues.length - 1 If intValues(intIndex) > intMax Then intMax = intValues(intIndex) End If Next lblMaxValue.text = intMax.ToString ``` c. ```For intIndex = 0 To intNUM If intValues(intIndex) > intMax Then intValues(intIndex) = intMax End If Next lblMaxValue.Text = intMax.ToString ``` d. ```intMax = intValues(0) For intIndex = 1 To intValues.length If intValues(intIndex) > intMax) Then intMax = intValues(intIndex) lblMaxValue.Text = intMax.ToString End If Next ```

Computer Science & Information Technology

Produce a list of the names and addresses of all employees who work for the IT department.

What will be an ideal response?

Computer Science & Information Technology

?Bob is making a PowerPoint presentation and has created a few slides from a Word outline. After completing his work, he notices that a few slides do not have the same formatting as the rest of the slides. To correct this, Bob should:

A. ?copy and paste the information in each slide again. B. ?link the file using the Create from File command. C. ?use the Reset button in the Home tab. D. ?revert to an earlier version of the file.

Computer Science & Information Technology

In order to protect a cellular phone for evidentiary procedures, transport it in a(n)________

Fill in the blank(s) with correct word

Computer Science & Information Technology