Answer:
B. $2,190
Explanation:
Calculation for the net present value of the proposal
Using this formula
Net present value=(Annual cash flow×Discounted present value)- Machine purchase amount
Let plug in the formula
Net present value=($14,000 ×5.335)-$72,500
Net present value=$74,690-$72,500
Net present value= $2,190
Therefore the Net present value will be $2,190
<span>A company that continues to have strong profit performance during an economic downturn when many other companies are suffering losses or failing should see their bond rating maintained or actually increase.
A bond rating lets one know of the credit quality and the means to pay back the bond with in a reasonable amount of time. Bonds are rated using letters and receive a grade based on their profit performance.
</span>
Answer:
b. $98,625.
Explanation:
Maintenance budget : $99,000
Assembly area: 43,000
Painting Area: 29,000
Maintenance budget allocated to assembly (M):

Administration budget : $79,00
Assembly employees: 150
Painting employees: 150
Administration budget allocated to assembly (A):

Therefore, the total amount of indirect factory expenses that should be allocated to the Assembly Department for the current period is:

/* Works only if a >= 0 and b >= 0 */ int pow(int a, int b) { if (b == 0) return 1; int answer = a; int increment = a; int i, j; for(i = 1; i < b; i++) { for(j = 1; j < a; j++) { answer += increment; } increment = answer; } return answer; } /* driver program to test above function */ int main() { printf("\n %d", pow(5, 3)); getchar(); return 0; }