Answer:
Race
Gender
Language
Inequality
Beliefs
Explanation:
Race: the business should not discriminate employees because of their race/skin color
Gender: equality between all genders in the workplace
Language: train and communicate with all employees with language applicable to all employees
Inequality: treat all employees equally and equal opportunities to all despite their backgrounds
Beliefs: avoid discriminating and disrespecting other people's beliefs
Answer:
The correct answer is C. the difference between the highest price a consumer is willing to pay and the price the consumer actually pays.
Explanation:
Consumer surplus arises from the law of diminishing returns. This means that the first unit to acquire we value it highly but as we acquire additional units our valuation falls. However, the price we pay for any unit is always the same: the market price. In this way, we enjoy a positive surplus of the first units we acquire until we reach the last one in which the surplus will be zero.
In graphic terms, consumer surplus is measured as the area below the market demand curve and above the price line. The demand curve measures the amount consumers are willing to pay for each unit consumed. Then, the total area below the demand curve reflects the total utility of consumption of the good or service. If the price we pay for each unit is subtracted from this area, the consumer surplus is obtained.
<span>It does not include implementing change. The team is only responsible for stringent standards of conduct, self-enforcement of legal and ethical rules and
effective and efficient use of resources. Implementing change is the responsibility other people or outside forces.</span>
Answer:
A statement that assigns freeBooks the appropriate value based on the values of the boolean variable isPremiumCustomer and the int variable nbooksPurchased.
if(nbooksPurchased > 4){
if(isPremiumCustomer){
freeBooks = 1;
if(nbooksPurchased > 7){
freeBooks = 2;
}
}else{
freeBooks = 0;
if(nbooksPurchased > 6){
freeBooks = 1;
}
if(nbooksPurchased > 11){
freeBooks = 2;
}
}
}else{freeBooks = 0;}
Explanation: