Microsoft Outlook uses a special file format called a ____ to save your email files, calendar entries, and contacts.

A. Sensitivity level
B. mailbox
C. data file
D. personal storage table

Answer: D

Computer Science & Information Technology

You might also like to view...

If you use a card reader to download pictures, you will still need to use the camera's software

Indicate whether the statement is true or false

Computer Science & Information Technology

What is the output of the following program when the button is clicked on?

``` Private Sub btnDisplay_Click(...) Handles btnDisplay.Click Dim a, b As String txtBox.Clear() a = "A" b = "B&" PrintWords(a, b) PrintWords(b, a) End Sub Sub PrintWords(a As String, b As String) txtBox.Text &= a & b End Sub ``` (A) ab ba (B) abba (C) ABBA (D) AB BA

Computer Science & Information Technology