answer.
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
Romashka-Z-Leto [24]
1 year ago
11

Jewelry Company has a sales budget for next month of $450,000. Cost of goods sold is expected to be 45 percent of sales. All goo

ds are paid for in the month following purchase. The beginning inventory of merchandise is $20,000, and an ending inventory of $24,000 is desired. Beginning accounts payable is $206,500. The cost of goods sold for next month is expected to be:
$160,000

$202,500

$360,000

$406,000
Business
1 answer:
lukranit [14]1 year ago
7 0

Answer:

The cost of goods sold for next month is expected to be $202,500

Explanation:

Given that,

Sales budget = $450,000

Cost of Good sold = 45% of sales

Opening inventory = $20,000

Ending inventory = $24,000

Beginning accounts payable = $206,500

Since, in the given question, it is mentioned that the cost of good sold is 45% of sales.

So,

Cost of Goods Sold (COGS) = 0.45 × $450,000

                                              = $202,500

Hence, the cost of goods sold for next month is expected to be $202,500

Note: we don't considered other things which is mentioned in the question.

You might be interested in
You have an opportunity to acquire a property form First Capital Bank. The bank recently obtained the property from a borrower w
love history [14]

Answer:

Acquiring the property will not be profitable. This is supported by the computation below;

Cash outflow required;

Offer cost                           $200,000

Other acquisition cost           $10,500

Repairs cost                           $12,000

Selling expenses and fee       $3,000

Loan Interest (180,000x8%)    <u>$14,400</u>

<u> </u>  Total                                   $239,900

Expected selling price         <u>$225,000</u>

Expected Loss                      <u>   $14,900</u>

<u />

Explanation:

It is assumed that the $180,000 loan from the bank will be completely absorbed in the process of bringing the property into a good selleable condition.  Also, the interest payable on loan will be paid monthly which will affect the liquidity of the buyer. Except funds are sought for somewhere else, the buy can not pay for the initial cost of the property. The venture will not be profitable.

Workings:

Cash outflow required;

Offer cost                           $200,000

Other acquisition cost           $10,500

Repairs cost                           $12,000

Selling expenses and fee       $3,000

Loan Interest (180,000x8%)    <u>$14,400</u>

<u> </u>  Total                                   $239,900

Expected selling price         <u>$225,000</u>

Expected Loss                      <u>   $14,900</u>

<u />

7 0
2 years ago
Orton corporation, which has a calendar year accounting period, purchased a new machine for $80,000 on april 1, 2013. at that ti
Alex_Xolod [135]
The answer in this question is $4,000. The solution to get the $4,000 answer is $80,000 – [($80,000 – $8,000) ÷ 9 × 5] = $40,000 (BV)
$44,000 – $40,000 = $4,000 (gain)
We have a $4,000 gain to be recognized at the time of the sale.
5 0
2 years ago
Which method of international expansion causes the least amount of risk? multiple choice joint venture licensing wholly owned su
svetlana [45]
<span>Exporting has the least amount of risk. This is because the company is simply selling its wares to other businesses and consumers, without having to worry about licensing the product, getting permissions from other governments, or having to jump through loopholes to get the product in the hands of the intended audience.</span>
5 0
2 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
1 year ago
On July 1, 2015, ABC company filed its Articles of Incorporation with the State of California. All of their correspondence and c
attashe74 [19]

Answer:

Explanation:

When ABC company filed its Articles of Incorporation with the State of California and All of their correspondence and contracts list ABC as ABC Inc. They are already tagged as a corporation with limited liability.

Now; when there is a breach of contract and they are being sued by XYZ Inc. From the knowledge that XYZ file the lawsuit case against ABC, the ABC company will then be treated as a partnership acquainted with unlimited liability instead of a corporation with limited liability they are being known for since they already had a notice from the State of California that their Articles of Incorporation have been rejected.

5 0
1 year ago
Other questions:
  • Chelsea purchased her monthly grocery requirements instead of soccer game tickets for the championship match she wanted to see.
    6·2 answers
  • The following is a list of terms related to performance evaluation. 1. Balanced scorecard 5. Customer perspective 2. Variance 6.
    12·1 answer
  • Golden Eagle Company prepares monthly financial statements for its bank. The November 30 and December 31 adjusted trial balances
    15·1 answer
  • The unusual types of ingredients Vosges uses, as described in the video, are part of which elementof the four Ps?
    8·1 answer
  • When Coca-Cola determines the bottled-water competitors for its Dasani brand by identifying the products or sets of products wit
    12·1 answer
  • Presented below are two independent situations: A) Sandhill Inc. acquired 10% of the 420,000 shares of common stock of Schuberge
    14·1 answer
  • Helga runs a website on which she sells houseplants. She also earns through pay-per-click advertising that allows search engines
    5·1 answer
  • Read across from the Lease Type column and choose the answer choice which best represents the type of activities lease-related c
    9·1 answer
  • The new policy states all employees will receive ________ paychecks through the online portal. Multiple Choice
    12·1 answer
  • YASHARI earns $27,000 per year, is single, and lives in Wyoming. She has $7000 in subsidized loans and another $19,000 in unsubs
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!