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
skelet666 [1.2K]
3 years ago
13

Factor Company is planning to add a new product to its line. To manufacture this product, the company needs to buy a new machine

at a $487,000 cost with an expected four-year life and a $23,000 salvage value. All sales are for cash, and all costs are out-of-pocket, except for depreciation on the new machine. Additional information includes the following:
Expected annual sales of new product $1,910,000
Expected annual costs of new product:
Direct materials 495,000
Direct labor 674,000
Overhead (excluding straight-line depreciation on new machine) 335,000
Selling and administrative expenses 159,000
Income taxes 38%
Required:
1. Compute straight-line depreciation for each year of this new machine's life.
2. Determine expected net income and net cash flow for each year of this machine's life.
3. Compute this machine's payback period, assuming cash flows occur evenly throughout each year.
4. Compute this machine's accounting rate of return, assuming income is earned evenly throughout each year.
5. Compute net present value, using a discount rate of 6% and that assuming that cash flows occur at each year-end.
Business
1 answer:
irina1246 [14]3 years ago
4 0

Answer:

1. $116,000

2. Net Income = $81,220 and Net Cash flow = $247,000

3. The payback period is 1 year and 11 months .

4. 31.85 %

5. $368,881.09

Explanation:

Straight Line Method charges a fixed amount of depreciation expense over the life of an asset.

Depreciation Expense = (Cost - Residual Value) / Estimated Useful Life

                                     = ($487,000 -  $23,000) / 4

                                     = $116,000

Net Income = Sales - Expenses

Sales                                                          $1,910,000

Less Expenses :

Direct materials                                         ($495,000)

Direct labor                                                ($674,000)

Overhead ( $335,000 + $116,000)           ($451,000)

Selling and administrative expenses       ($159,000)

Operating Income before tax                     $131,000

Income tax at 38%                                       ($49,780)

Net Income                                                   $81,220

Net Cash Flow Calculation :

Operating Income before tax                     $131,000

Add Depreciation Expense                        $116,000

Net Cash flow                                             $247,000

Payback period

Payback period = Year 1 + Year 2

        $487,000  =  $247,000 + $240,000 /   $247,000 × 12

                          =  1 year, 11 months

Therefore, the payback period is 1 year and 11 months .

Accounting Rate of Return = Average Profits / Average Investment  × 100

Where, Average Profits = Sum of Profits ÷ Number of Years

                                       = ($81,220 × 4) ÷ 4

                                       = $81,220

and Average Investment = (Initial Investment + Scrape Value) ÷ 2

                                         = ($487,000 + $23,000) ÷ 2

                                         = $255,000

Therefore, Accounting Rate of Return = $81,220 / $255,000 × 100

                                                               = 31.85 %

NET PRESENT VALUE (NPV)

Calculation of NPV of Project A using a Financial Calculator :

($487,000) Cfj

$247,000     Cfj

$247,000       Cfj

$247,000       Cfj

$247,000       Cfj

6                I/Yr

Shift NPV   $368,881.09

You might be interested in
This program will store roster and rating information for a soccer team. coaches rate players during tryouts to ensure a balance
Vedmedyk [2.9K]

Answer:

Explanation:

#include <iostream>

#include <vector>

using namespace std;

int main() {

   vector<int> jerseyNumber;

   vector<int> rating;

   int temp;

   for (int i = 1; i <= 5; i++) {

       cout << "Enter player " << i

            << "'s jersey number: ";

       cin >> temp;

       jerseyNumber.push_back(temp);

       cout << "Enter player " << i

            << "'s rating: ";

       cin >> temp;

       rating.push_back(temp);

       cout << endl;

   }

   cout << "ROSTER" << endl;

   for (int i = 0; i < 5; i++)

       cout << "Player " << i + 1 << " -- "

            << "Jersey number: " << jerseyNumber.at(i)

            << ", Rating: " << rating.at(i) << endl;

   char option;

   '

   while (true) {

       cout << "MENU" << endl;

       cout << "a - Add player" << endl;

       cout << "d - Remove player" << endl;

       cout << "u - Update player rating" << endl;

       cout << "r - Output players above a rating"

            << endl;

       cout << "o - Output roster" << endl;

       cout << "q - Quit" << endl << endl;

       cout << "Choose an option: ";

       cin >> option;

       switch (option) {

           case 'a':

           case 'A':

               cout << "Enter a new player's"

                    << "jersey number: ";

               cin >> temp;

               jerseyNumber.push_back(temp);

               cout << "Enter the player's rating: ";

               cin >> temp;

               rating.push_back(temp);

               break;

           case 'd':

           case 'D':

               cout << "Enter a jersey number: ";

               cin >> temp;

               int i;

               for (i = 0; i < jerseyNumber.size();

                    i++) {

                   if (jerseyNumber.at(i) == temp) {

                       jerseyNumber.erase(

                               jerseyNumber.begin() + i);

                       rating.erase(rating.begin() + i);

                       break;

                   }

               }

               break;

           case 'u':

           case 'U':

               cout << "Enter a jersey number: ";

               cin >> temp;

               for (int i = 0; i < jerseyNumber.size();

                    i++) {

                   if (jerseyNumber.at(i) == temp) {

                       cout << "Enter a new rating "

                            << "for player: ";

                       cin >> temp;

                       rating.at(i) = temp;

                       break;

                   }

               }

               break;

           case 'r':

           case 'R':

               cout << "Enter a rating: ";

               cin >> temp;

               cout << "\nABOVE " << temp << endl;

               for (int i = 0; i < jerseyNumber.size();

                    i++)

                   if (rating.at(i) > temp)

                       cout << "Player " << i + 1

                            << " -- "

                            << "Jersey number: "

                            << jerseyNumber.at(i)

                            << ", Rating: "

                            << rating.at(i) << endl;

               break;

           case 'o':

           case 'O':

               cout << "ROSTER" << endl;

               for (int i = 0; i < jerseyNumber.size();

                    i++)

                   cout << "Player " << i + 1 << " -- "

                        << "Jersey number: "

                        << jerseyNumber.at(i) << ", Rating: "

                        << rating.at(i) << endl;

               break;

           case 'q':

               return 0;

           default:

               cout << "Invalid menu option."

                    << " Try again." << endl;

       }

   }

}

4 0
3 years ago
Inez hires josh to paint her portrait to her satisfaction for $4,000. when josh finishes the portrait, inez announces that she i
mamaluj [8]

If Inez is not satisfied with the painting by Josh, Inez does not have to accept the portrait or pay Josh any money. Inez does not have to pay Josh at all.

7 0
3 years ago
____ is a short-term debt instrument issued only by well-known, creditworthy firms and is normally issued to provide liquidity o
monitta

Answer:

Commercial Paper.

Explanation:

A commercial Paper is an unsecured and negotiable money market instrument issued in the form of a promissory note. Are issued by companies to raise short term funds for meeting working capital requirements.

Benefits to the issuer:

-low interest expenses

-access to short term funding

-flexibility and liquidity

-investor recognition

-ease and low cost of establishment

-no collaterals

Benefits to the investor:

-higher yield

-portfolio diversification

-flexibility

-liquidity

4 0
3 years ago
If net operating income is $83,000, average operating assets are $415,000, and the minimum required rate of return is 13%, what
tester [92]

Answer:

$29,050

Explanation:

The computation of the residual income is shown below:

Residual income = Net operating income - Minimum required income  

= $83,000 - $53,950  

= $29,050  

Here

Minimum required income   =   Average operating assets × Minimum required rate of return  

= $415,000 × 13%    

= $53,950

This should be the answer and the options provided are wrong

6 0
3 years ago
In 2010, real GDP was $13.2 trillion and nominal GDP was $14.6 trillion. What was the GDP deflator for that year?a. 9.6% lower b
serg [7]

Answer:

d. 10.6% higher

Explanation:

Given that;

Real GDP = $13.2 trillion

Nominal GDP = $14.6 trillion

GDP deflator = (Nominal GDP/Real GDP)× 100)

Hence,

GDP deflator = (14.6 / 13.2 ) × 100

GDP deflator = 110.6%

Thus,

= 110.6 - 100

= 10.6% higher

5 0
3 years ago
Other questions:
  • Jamal has been tasked with putting together a new team for a new Starbucks project line. As Jamal thinks through the components
    14·1 answer
  • . The organizers of a conference in the Houston Convention Center are evaluating the possibility of setting up a computer area w
    6·2 answers
  • Officials argue that the government needs to reduce the national debt. Which actions are most likely to accomplish this goal?
    5·1 answer
  • There is _____ to say that a company's socially responsible actions significantly hurt its long-term economic performance.
    14·1 answer
  • Snack food vendors and beer distributors earn some monopoly profits in their local markets but see them slowly erode from variou
    6·1 answer
  • It is usually easier to detect inadequate disclosure fraud that involves______ disclosures than it is to detect disclosure fraud
    9·1 answer
  • profit maximization pricing objective a. is a status quo oriented pricing objective. b. is a sales-oriented pricing objective. c
    12·1 answer
  • Why is it important to reconcile your bank statements?
    11·2 answers
  • Governors and state officials would tend to favor ______ from federal funding since it provides flexibility in terms of how the
    13·1 answer
  • ______ management refers to the activities related to planning for, attracting, developing and retaining an effective workforce.
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!