Which of the following is a mail delivery agent?

A. Procmail
B. Sendmail
C. qmail
D. Exim


Answer: A

Computer Science & Information Technology

You might also like to view...

Visual Studio 2010 provides a tool to print the user interface designed in the application.

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

Computer Science & Information Technology

Each unit required to form a computer (CPU, memory, and I/O) is now manufactured on a single chip called a(n) ____________________.

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

Computer Science & Information Technology

What is the output of the following code fragment?

int f1(int x, int y) { if(x<0 || y<0) return x-y; else return f1(x-1,y) + f1(x,y-1); } int main() { cout << f1(1,2)<

Computer Science & Information Technology

The block of code that checks if an unusual situation or error occurs is called

a. the catch block b. the try block c. a function d. an error block

Computer Science & Information Technology