A padlock is associated with the ________ feature in Word

A) Subdocuments
B) Master documents
C) Combine
D) Compare


A

Computer Science & Information Technology

You might also like to view...

Here is some code. There are only two outputs, one a message from the unnamed namespace the other a message from the Savitch namespace. Tell which line generates which message.

``` #include using namespace std; namespace { void message(); } namespace Savitch { void message(); } int main() { { message(); //a) Savitch::message(); //b) using Savitch::message; message(); //c) } message(); //d) return 0; } namespace Savitch { void message() { cout << "Message from NS Savitch\n"; } } namespace { void message() { cout <<"Message from unnamed NS\n"; } } ``` 1) List the letters of the lines that give the message from the unnamed namespace: ____________________ 2) List the letters of the lines that give the message from the Savitch namespace: ____________________

Computer Science & Information Technology

Which of the following statements creates an instance of File on Window for the file c:\temp.txt?

a. new File("c:\temp.txt") b. new File("c:\\temp.txt") c. new File("c:/temp.txt") d. new File("c://temp.txt")

Computer Science & Information Technology

The error message style ________ informs the user that data is invalid but allows the data entry

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

Computer Science & Information Technology

Case OL 2-2Olivia's boss has asked her to set up a meeting for 10 people in the Yosemite Conference Room using Outlook Calendar.Olivia wants to view when the attendees are available. In the Show group, she clicks the ____ button to open a grid indicating the availability of the attendees.

A. Calendar B. Scheduling C. Availability D. Meeting

Computer Science & Information Technology