In the accompanying figure of a Microsoft Word 2016 document, which of the following occurs when you click the icon that Box A is pointing to??
?

A. ?The default document border settings are applied to the entire file.
B. ?The document border is removed.
C. ?A border that appears in 3D is created.
D. ?A border that appears on some sides of the selected text is created.


Answer: D

Computer Science & Information Technology

You might also like to view...

What is the output of the following code?

``` include using namespace std; class Foo { public: int x; // data field int y; // data field Foo() { x = 10; y = 10; } void p() { int x = 20; // local variable cout << "x is " << x << " "; cout << "y is " << y << endl; } }; int main() { Foo foo; foo.p(); return 0; } ``` a. x is 20 y is 20 b. x is 10 y is 10 c. x is 10 y is 20 d. x is 20 y is 10

Computer Science & Information Technology

Which of the statements below will create the String r1 = "JAVA: How to Program"?

Consider the statements below: String a = "JAVA: "; String b = "How to "; String c = "Program"; a. String r1 = c.concat(b.concat(a)); b. String r1 = a.concat(b.concat(c)); c. String r1 = b.concat(c.concat(a)); d. String r1 = c.concat(c.concat(b));

Computer Science & Information Technology

In SharePoint, ________ are collections of announcements, links, surveys, discussion boards, or tasks

A) workflows B) Web Part zones C) lists D) libraries

Computer Science & Information Technology

Excel indicates where page breaks will occur by placing temporary ________ (such as Page 1, Page 2) on your display.

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

Computer Science & Information Technology