Match each term with the correct statement below.

A. First part of an email message
B. A protocol designed to provide access to electronic messages that are stored on a mail server
C. Includes features such as concurrent access to shared mailboxes, online and offline access to messages, and management from any computer
D. Used primarily to transfer binary attachments
E. Specifies how electronic messages are exchanged between computers using the Transmission Control Protocol


A. Header
B. IMAP
C. IMAP4
D. Base64 encoding method
E. SMTP

Computer Science & Information Technology

You might also like to view...

The code for a template function is generated when:

a. The function template declaration (prototype) appears in the C++ program. b. The function template is encountered in the C++ program. c. The function call is encountered in the C++ program d. At runtime, when the function call is executed.

Computer Science & Information Technology

Consider the class

``` class Value { private T v; public Value(T v1) { v = v1; } public void output() { System.out.println(v); } } ``` The code Value nV = new Value(12); A) will cause a compiler error B) will compile correctly, but cause an exception at run time C) will compile and run correctly D) None of the above

Computer Science & Information Technology

To create an absolute reference, insert a pound sign (#) before the column reference and another pound sign before the row reference.

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

Computer Science & Information Technology

Running a section of code over and over again until some condition is met is an example of a:

A) loop. B) IF...THEN. C) DO... WHILE. D) decision table.

Computer Science & Information Technology