1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Bumek [7]
2 years ago
6

Which business letter feature is found at the top of the page?

Business
2 answers:
otez555 [7]2 years ago
7 0

Answer:

The correct answer is <u><em>the heading</em></u> of the letter.

Explanation:

To begin with, the heading of a business letter is the part of it that <em>shows who the sender is by giving information</em> about him, like<em> the sender's company</em>, <em>name and address</em>. It also may include <em>the date</em> of writing as well.

Secondly, the heading is the part that <em>goes in the top</em> of the page due to the fact that is used to <em>let the reader knows who wrote</em> the letter<em> and to whom the response must be sent</em>.

Serggg [28]2 years ago
3 0

The heading goes at the very top of the page, along with your name and address. So heading is correct. Good luck.

You might be interested in
Discuss social responsibility and ethics?<br><br>​
LuckyWell [14K]

Answer:

Social responsibility: It is an ethical theory in which individuals are accountable for fulfilling their civic duty.

Social ethics: It refers to guidelines and principle if that group of people who decided to references to in order to be accepted.

8 0
3 years ago
Im a hot girl what is the best code if you want it starts with a P
stepan [7]

Answer:

porsche

Explanation:

i don't know that was the first thing that came to my head when I thought of p

5 0
1 year ago
Workers who do not have the expectation of steady, full-time employment are called ________ workers.
Tems11 [23]
These workers are called contingent workers
Contingent workers are the type of workers that hired per-project basis. This make up Freelancers, consultants, or contractors.
Since technically these workers are not a part of the company, the company is not require to give benefit to them like its full-time workers.
7 0
3 years ago
From theory, what are some communication channels and barriers? Now from professional experiences, what are some communication c
Ira Lisetskai [31]

Answer:

Communication channels are the channels with which information are passed from one to person to another. Messages and ideas are exchanged using these channels to complete the communication process.

Explanation:

Types of communication channels are:

Email

Social media

TelephoneTelevision

Radio

Face-to-face communication

Oral and written communication

Verbal and non-verbal communication.

Communication can be through the use of words or without words, such as the use of signs and gestures. Communication can take place physical and otherwise.

Barriers in communication this are the things that create disturbances in sent messages and thereby causing a misunderstanding between the sender and receiver.

Barriers are:

Poor communication skills: when an individual communication skill is weak, such individual lacks the confidence to communicate effectively in front of others.

Noise disturbance: Noise disturbance is a barrier that hampers the clarity of a message.

Language barriers: The language barrier occurs when there is diversity in an organization workforce. languages or accents differ fromLanguage to language same as cultures.

Perception differences: This occurs when the senders point of view and receivers doesn’t match up which results in lack of understanding.

Wrong pronunciation of words and poor usage of vocabulary: By not pronouncing words accurately and correctly, wrong message might be passed.

the communication channels in a professional settings are:

Formal communication: the use of written letters and e-mails to colleagues, senior management, or the exchange of thoughts through official presentations before board members.

Informal communication: this kind of message channel exist between acquittances people we are familiar with. Any style and words not suitable in formal communication mode can be used here.

Barriers at the professional level are:

Organizational Hierarchy: due to the long chain of hierarchy or it passes through this alters the original message.

Lack of knowledge of non-verbal communication: Body language, gestures and postures are essential factors of communication as a wrong gestures and postures communicate false messages.

Low confidence level: For am individual to be able face a crowd and pass effective communication he needs his confidence level high.

Clarity in the message: The message been passed must be clear, concise and simple. Free of grammatical and spelling errors.

High confidence level: a confident speakers communicates easily, which his message easy to grasp and understand.

Feedback: for a communication process to be complete the receiver must give a feedback.

Good communication skills:

1. Practicing like they say practice makes perfect.

2. Proper pronunciation of words.

6 0
3 years ago
Write the AddressList method newBusiness. This method searches addresses for an existing business with an identical address (i.e
max2010maxim [7]

Answer:

See explaination

Explanation:

// Address.java

public class Address {

/**

* The name of the business

*/

private String name;

/**

* The name of the street the business is on

*/

private String street;

/**

* The street number of the business

*/

private int number;

/**

* Constructs an Address that represents a business with name nm,

* at number no on the street st

*/

public Address(String nm, String st, int no)

{

name = nm;

street = st;

number = no;

}

/**

* Returns the name of the business

*/

public String getName()

{

return name;

}

/**

* Returns the name of the street on which the business is located

*/

public String getStreet()

{

return street;

}

/**

* Returns the street number of the business

*/

public int getNumber()

{

return number;

}

}

//end of Address.java

//AddressBook.java

import java.util.ArrayList;

import java.util.List;

public class AddressBook {

/**

* The list of business addresses. No two businesses in the list

* can have the same address (both the same street and street number)

*/

private List<Address> addresses;

/**

* Constructs an empty AddressBook

*/

public AddressBook()

{

addresses = new ArrayList<Address>();

}

/**

* atparam st the name of a street

* atreturn a list with the names of each business with an address on that street

*/

public List<String> onStreet(String st)

{

// create an empty output list of names of business

List<String> businessName = new ArrayList<String>();

// loop over the list of addresses

for(int i=0;i<addresses.size();i++)

{

// if ith street of address = nm, add the name of the business to the output list

if(addresses.get(i).getStreet().equalsIgnoreCase(st))

businessName.add(addresses.get(i).getName());

}

return businessName; // return the list

}

/**

* Searches for an existing business with an identical address (street and number

* both match). Updates the record to an address with name nm, street st and number no.

* If no entry already exists adds a new address to the end of the list with these parameters.

*

* atparam nm the name of the business

* atparam st the street the business is on

* atparam no the street number of the business

* atreturn the index of where the business address is on the list

*/

public int newBusiness(String nm, String st, int no)

{

// loop over the list of addresses

for(int i=0;i<addresses.size();i++)

{

// if ith index addresses match the street and number of the input st and no

if((addresses.get(i).getStreet().equalsIgnoreCase(st)) && (addresses.get(i).getNumber() == no))

{

addresses.remove(i); // remove the ith address from list

addresses.add(i, new Address(nm,st,no)); // add a new address with the input name, street and number at ith index

return i; // return the index i

}

}

// if no address match, add the business at the end of the list

addresses.add(new Address(nm,st,no));

return addresses.size()-1; // return the last index

}

}

//end of AddressBook.java

5 0
3 years ago
Other questions:
  • Which of the following describes a consensus?
    7·2 answers
  • The Rogers Corporation has a gross profit of $704,000 and $333,000 in depreciation expense. The Evans Corporation also has $704,
    10·1 answer
  • Florida schools offered cash bonuses to students who scored high on the state's standardized exams. The cash bonuses are an exam
    15·1 answer
  • You have just started a new web-based business, and now you realize that if you want your company to succeed, you will have to c
    5·1 answer
  • Reasons for the formation of partnership
    7·1 answer
  • Sandra Robinson is saving to buy a house in five years. She plans to put 20 percent down at that time, and she believes that she
    10·1 answer
  • On June 30, 2009, Apricot Co. paid $5,000 cash for management services to be performed over a two-year period. Apricot follows a
    6·1 answer
  • Spindler, Inc. (a U.S.-based company), imports surfboards from a supplier in Brazil and sells them in the United States. Purchas
    12·1 answer
  • You're the production manager for a company that manufactures clothing, and you oversee activities in a wide range of department
    8·1 answer
  • 2. Three years ago, Shawheen deposited $5,000 in a savings account. Today, the account is worth
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!