Identify the letter of the choice that best matches the phrase or definition.

A. An activity that does not involve other people or resources.
B. View that displays multiple calendars at the same time.
C. Status option that shows time with a slashed bar.
D. An activity that occurs at least once and lasts 24 hours or longer.
E. View that displays the seven days of the selected week in the appointment area.
F. Status option that shows time with a white bar.
G. Status option that shows time with a purple bar.
H. View that shows Monday through Friday in columnar style.
I. Print style that prints a seven-day weekly calendar.
J. An activity in which people and other resources are invited.


A. appointment
B. Schedule
C. Tentative
D. event
E. Week
F. Free
G. Out of Office
H. Work Week
I. Weekly Calendar
J. meeting

Computer Science & Information Technology

You might also like to view...

Suppose that you work for a beverage company. The company wants to know the optimal cost for a cylindrical container that holds a specified volume. Write a fragment of code that uses an ask-before-iterating loop. During each iteration of the loop, your code will ask the user to enter the volume and the radius of the cylinder. Compute and display the height and cost of the container. Use the following formulas, where V is the volume, r is the radius, h is the height, and C is the cost.

Computer Science & Information Technology

What is the output of the following code?

``` int w = 98; int x = 99; int y = 0; int z = 1; if (x >= 99) { if (x < 99) cout << y << endl; else cout << z << endl; } else { if (x == 99) cout << x << endl; else cout << w << endl; } ``` a. 98 b. 99 c. 0 d. 1 e. None of these

Computer Science & Information Technology

A catch block that does not specify which type of exception it catches ________.

a) is a syntax error b) is useless; it will not catch any type of exception c) will catch any type of exception that does not already have a handler defined d) should be the last catch block in a group e) Both c and d.

Computer Science & Information Technology

Briefly describe any of the five communications protocols.

What will be an ideal response?

Computer Science & Information Technology