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
erma4kov [3.2K]
3 years ago
15

Exercise 14-04 a-c Bonita Company reports the following costs and expenses in May. Factory utilities $16,000 Direct labor $72,70

0 Depreciation on factory equipment 14,250 Sales salaries 50,000 Depreciation on delivery trucks 4,900 Property taxes on factory building 2,600 Indirect factory labor 53,500 Repairs to office equipment 1,800 Indirect materials 85,000 Factory repairs 2,970 Direct materials used 141,700 Advertising 15,600 Factory manager’s salary 8,100 Office supplies used 3,420 From the information: Determine the total amount of manufacturing overhead. Manufacturing overhead $ Determine the total amount of product costs. Product costs $ Determine the total amount of period costs. Period costs $
Business
1 answer:
PilotLPTM [1.2K]3 years ago
5 0

Answer:

Factory Overheads  $182,420

Manufacturing overhead $ 396,820

Product costs $396,820

Period costs $ 75,720

Explanation:

Bonita Company

Direct materials used 141,700

Direct labor $72,700

Factory Overheads  $182,420

Factory utilities $16,000

Depreciation on factory equipment 14,250

Property taxes on factory building 2,600

Indirect factory labor 53,500

Indirect materials 85,000

Factory repairs 2,970

Factory manager’s salary 8,100

Manufacturing overhead $ 396,820

Product costs $396,820

Advertising 15,600

Office supplies used 3,420

Sales salaries 50,000

Depreciation on delivery trucks 4,900

Repairs to office equipment 1,800

Period costs $ 75,720

Manufacturing Costs are costs used in the manufacture of products.

Product Costs = Direct materials + Direct Labor + Manufacturing Overheads

Period Costs include Marketing and Selling Expenses , Administrative Expenses.

You might be interested in
Describe the action of gluten during mixing and baking
forsale [732]

Answer: Gluten develops as flour is mixed with liquid and forms strong, elastic strands that crisscross in a springy mesh, or weave, of tiny cells. The cells trap air or gas in the baked product. As the product bakes, cells expand with heated air or gas.

Brainliest Please!

6 0
3 years ago
Read 2 more answers
Maple Leaf, Inc., a television manufacturer, would like to reduce its inventory. To this end, you are asked by the operations ma
irga5000 [103]

Answer:

Maple Leaf, Inc.

Inventory Turnover:

b. Greater than 2 but less than 3

Explanation:

a) Data and Calculations:

1) Average inventories:

Raw materials     $2,500,000

Work-in-process  $1,000,000

Finished goods      $800,000

Total average inventory   $4,300,000

Cost of goods sold = $12,000,000

Inventory Turnover = Cost of goods sold/Average Inventory

= $12,000,000/$4,300,000

= 2.79 times

2) Inventory turnover is a financial ratio that shows the number of times in a year that inventory has been sold by Maple Leaf, Inc.  When it divides the number of days, say 360 days in a year, the ratio that comes out shows the number of days it takes Maple to sell its inventories.

3 0
3 years ago
The study of economics is really boring, and it has little to do with my daily life.
zvonat [6]

Studying economics can be really boring, because of the amount of technical terms that can be difficult for everyone to understand, but it is important to learn economics as we deal with it in our daily life.

All of our activities are related to economics, as economics is defined as the science that studies the economic process, the distribution of wealth and resources for satisfying human needs and well-being.

Through economics we can understand several variables that impact our lives, such as:

  • manage personal finances,
  • understand the world's economic scenario,
  • understand the news,
  • make investments.

Therefore, it is necessary for each individual to have a base of economic knowledge to better understand how and why things happen in the world and how they directly impact our lives.

Learn more:

brainly.com/question/17408105

7 0
3 years ago
Workers in contributing to the common good is
Katarina [22]
A worker's success in contributing to the common good is determined by how well one does his or her job. One way is to pay tax contributions properly. Another way is to be proactive and open-minded with regards to work. Lastly, they must also know how to motivate others.
4 0
3 years ago
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
Other questions:
  • S.O.S &lt;&gt;
    6·1 answer
  • A refrigerator is priced at $1,250. There are two options offered to reduce the price: either a 25% discount off the price
    12·1 answer
  • A company should accrue a loss contingency only if the likelihood that a liability has been incurred is:At least reasonably poss
    6·1 answer
  • Which assertions about statement 1 and statement 2 is true? Statement 1: 10,000 bonds sold by Echo Corporation were bought by a
    11·1 answer
  • According to the textbook readings, If gross sales for the shoe department for spring were $2,675,000 and the reductions taken w
    15·1 answer
  • Following a self improvement plan takes a lot of discipline.<br> a. True<br> b. False
    12·2 answers
  • Kaspar Industries expects credit sales for January, February, and March to be $202,100, $264,200, and $319,300, respectively. It
    14·1 answer
  • Bramble Corp. received $93000 in cash and a used computer with a fair value of $348000 from Blossom Company for Bramble Corp.'s
    9·1 answer
  • The present value of $100 paid annually at year end for 20 years at 10% per year is:________.
    11·1 answer
  • Which piece of information in the sales contract does not help the parties specify exactly which property is being purchased?
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!