Answer:
$17,190
Explanation:
Costs that make up the cost of an asset are cost of purchase , sales tax , transportation , shipment insurance , import duties on items , assembly installation and all other costs incurred in making the assets ready for use.
Workings
Cost of purchase - 16,000
Transportation - in 210
Shipping insurance- 120
Car import duties - 860
Total cost 17,190
Other cost will the expensed as incurred
Answer:
2- A. Establish ground rules
3- D. Top management’s requirements.
Explanation:
2- An effective team is a well-integrated team, where the flow of information occurs effectively and where each member feels equally respected and an important part of the team, being able to contribute with ideas and feedback.
Therefore, for there to be cohesion and improvement of the team's performance, it is necessary to establish basic rules, to guide the behavior and actions of members and for there to be equality among all, in order to avoid conflicts and organize work.
3- to guide the process of the performance improvement team, the most important alternative is the requirements of senior management.
It is the managers who will coordinate, monitor and guide the action plans and develop the fundamental requirements for the execution of the business actions that will lead to the fulfillment of the objectives and goals.
Answer:
Providing proper incentives for the employees to work more efficiently.
Explanation:
The objective of a good corporate governance is mainly in the interest of the company's shareholders. The shareholders should be able to see through (transparency) the activities of the company.
The consideration given to the bank for providing loan facility, in return of such facility an amount is paid which is over and above the principle amount of loan, this amount can be said as interest.
Interest are of two types i.e. (a) Simple interest (b) compound interest
<h3>simple interest</h3>
The amount of interest which is calculated at a fixed predetermined rate every year on the principle amount and paid until the loan is settled in full.
Given in the Question
Principle is $20,000
Rate is 3%
Time is 1 year
<h3>Calculation</h3>
The simple interest is calculated by multiplying principle with the rate and than the outcome is multiplied with time to find simple interest.

Therefore the amount of interest received by Michael at the end of first year on an amount of $20,000 at a interest rate of 3%will be $600.
Learn more about simple interest here:
brainly.com/question/9895511
Answer:
public static char getRandomColor(Random random){
int number = random.nextInt(6);
if(number == 0){
return 'R';
} else if (number == 1){
return 'G';
} else if (number == 2){
return 'B';
} else if (number == 3){
return 'Y';
} else if (number == 4){
return '*';
} else {
return '.';
}
}
Explanation:
The function take random object as parameter. First, the a generated integer between 0 to 5 is assigned to number.
Next, a block of if-else statement is use to check the generated random number and knows which character to return. If the number is 0, 'R' is returns. If the number is 1, 'G' is returns. If the number is 2, 'B' is returns. If the number is 3, ' Y' is returns. If the number is 4, '*' is returns. If the number is 5, '.' is returns.