Match each item with the correct statement below.
A. The paragraphs of a memo or letter
B. Formal closing at the end of a business letter
C. Notation keyed at the end of a letter indicating to whom copies will be sent
D.
E. Notation keyed at the end of a letter reminding the reader that something is enclosed with the letter
F. Stationery that includes the company name, address, telephone number, and other optional information printed at the top
G. Lowercase typist initials keyed at the end of a letter or memo
H. Greeting in a letter, usually consisting of person's title and last name
I.
J. Begins two lines below the complimentary closing
A. Body
B. Complimentary closing
C. Copy notation
D. Letter
E. Enclosure notation
F. Letterhead
G. Reference initials
H. Salutation
I. Memo
J. Writer's name and title
You might also like to view...
Which of the following categories of variables are available in Alice?
a. Local variables b. Parameter variables c. Class-Level variables d. World-Level variables e. All of these
A smaller version of a image that usually links to the larger image is called a:
a. hyperlink b. thumbnail image c. small image d. wallpaper
Develop a C++ program that uses a while statement to determine the gross pay for each of several employees. The company pays “straight time” for the first 40 hours worked by each employee and pays “time-and-a-half” for all hours worked in excess of 40 hours. You are given a list of the employees of the company, the number of hours each employee worked last week and the hourly rate of each
employee. Your program should input this information for each employee and should determine and display the employee’s gross pay. Enter hours worked (-1 to end): 39 Enter hourly rate of the employee ($00.00): 10.00 Salary is $390.00 Enter hours worked (-1 to end): 40 Enter hourly rate of the employee ($00.00): 10.00 Salary is $400.00 Enter hours worked (-1 to end): 41 Enter hourly rate of the employee ($00.00): 10.00 Salary is $415.00 Enter hours worked (-1 to end): -1
Which of the code examples will force the display of quotation marks before and after the sentence?
A) " "This text is surrounded in quotes" " B) """ This text is surrounded in quotes """ C) "" This text is surrounded in quotes "" D) " This text is surrounded in quotes "