Answer:
The warranty period is for three years.
Explanation:
A warranty is a promise a buyer receives from the seller that the latter will repair or replace the product should it develop defects within a stated period. Warranties are granted with specific conditions. The universal condition is that the defects in the product are a result of the manufacturing process and not the buyers' misuse. The defect must occur within a stated period.
In the case of XYZ, the stated period is three years. However, the seller has introduced another condition of "or 30,000 miles whichever comes first." For business reasons, and from market experience, the seller expects that XYZ will use the vehicle at an average rate of 10,000 miles per year. At this rate, the warranty will last for three years. Should the buyer use the vehicle at a faster rate than this, the 30,000 miles will be exhausted earlier, which will bring the warranty to an end. If XYZ uses the vehicle at a slower or the expected rate, the warranty will last for three years.
Answer and Explanation:
The economics of scope refers to the total cost production cost i.e to be averaged for the various type of goods
While on the other hand, the economics of scale refers to the benefit of the cost than occurs when there is a higher production level at a time
Based on this, the classification is as follows
1, Economics of scale as the output rises that declines the LAC so automatically it goes downward
2. economics of scope
Answer:
The correct option is C
Explanation:
Accounting error is the type of error in the accounting which was not done intentionally but when spotted, the error need to be fixed immediately. And when there is no immediate solution for the error, an investigation is conducted in order to find out who caused the error.
The statement which is true is that they represent the fraud which usually result in the legal action to be taken.
Answer and Explanation:
The computation is shown below:
a. Marpor's value without leverage is
But before that first we have to calculate the required rate of return which is
The Required rate of return = Risk Free rate of return + Beta × market risk premium
= 5% + 1.1 × (15% - 5%)
= 16%
Now without leverage is
= Free cash flows generates ÷ required rate of return
= $16,000,000 ÷ 16%
= $100,000,000
b. And, with the new leverage is
= (Free cash flows with debt ÷ required rate of return) + (Tax rate × increase of debt)
= ($15,000,000 ÷ 0.16) + (0.35 × $40,000,000)
= $93,750,000 + $14,000,000
= $107,750,000
Answer:
The query may still be specified in SQL by using a nested query as follows (not all
implementations may support this type of query):
SELECT DNAME, COUNT (*)
FROM DEPARTMENT, EMPLOYEE
WHERE DNUMBER=DNO AND SEX='M' AND DNO IN ( SELECT DNO
FROM EMPLOYEE
GROUP BY DNO
HAVING AVG (SALARY) > 30000 )
GROUP BY DNAME;
Explanation: