Identify the collaboration tool used by organizations to determine the availability of team members and to send email notifications and reminders for meetings and event participations.

a. Really Simple Syndication
b. Calendaring software
c. A Webcast
d. A podcast


b. Calendaring software
Calendaring software allows people to capture and record scheduled meetings and events. The software enables you to check the electronic calendar of team members for open time slots and to send email notifications and reminders to meeting and event participants.

Computer Science & Information Technology

You might also like to view...

Any tool with a small ____ displayed in the lower-right corner has other tools hidden beneath it.

a.rectangle b.triangle c.asterisk d.plus symbol

Computer Science & Information Technology

Divide the total points scored by the number of words presented.

Write an application called Scramble that has a GUI to play a game of word anagrams. Create two arrays of strings. The first array will hold words, and the second will hold scrambled versions of those words. Your Java code can initialize these arrays directly with the words. Display the scrambled version of the word in a label. The user will enter a guess for the word in a text field and press a Check button, You should see whether the guess is correct. If it is not correct, change the guess in the text field to Sorry, that is incorrect. Please try again. If the guess is correct, change it to “That is correct. Here is a new word to try.” And display a new scramble. Also provide a Give Up button. If it is pressed, display the unscrambled word and provide a new scrambled word. Here are some extensions that can be made to improve this application: • Read the words from a file. • Do not use a second array of scrambled words, but instead use Java’s random number generator to swap letters in the word just before you display the scrambled word. • Randomly decide which word to display. • Keep a score. Award 5 points if the user gets the word on the first guess, 3 points for getting it on the second guess, or 1 point for getting it on the third guess. This application keeps the possible words in an array and sets it directly within the code. It also has a couple private variables to remember the word it is on and the number of guesses made. It has a method to scramble the word. There are a number of different ways the scrambling could be done. This implementation repeatedly removes a random character from the word and adds that character to a result string.

Computer Science & Information Technology

The Form Wizard limits fields to be used in a form to one table or one query. ____________________

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

HTTP stands for:

a. High-Technology Transmission Protocol b. Help Text Translation Protocol c. Hypertext Transfer Protocol d. Hardware Testing Tool Protocol e. How To Talk Protocol

Computer Science & Information Technology