What cannot be used as the data source for a mail merge?

A) Access query B) Access table C) Access macro D) Word table

C

Computer Science & Information Technology

You might also like to view...

here exists a data type Date with member function Increment that increments the current Date object by one. The ++ operator is being overloaded to postincrement an object of type Date. Select the correct implementation:

a. Date Date::operator++( int ) { Date temp = *this; Increment(); return *temp; } b. Date Date::operator++( int ) { Increment(); Date temp = *this; return temp; } c. Date Date::operator++( int ) { Date temp = *this; return this; temp.Increment(); } d. Date Date::operator++( int ) { Date temp = *this; Increment(); return temp; }

Computer Science & Information Technology

Types of listserv software include mailserv, majordomo, and almanac.

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

Computer Science & Information Technology