What is one course of action available in every decision making process?a. Respond in a way which will have only positive consequences
b. Respond in a way which will have no negative consequences
Choose to do nothing about the issue
d. None of the above
Please select the best answer from the choices provided
А

Answers

Answer 1
Answer:

Answer:

Answer C

Explanation:


Related Questions

Suppose that the demand for a particular t-shirt the UNC Student Stores sells is deterministic with 2 units per day. Each t-shirt costs $10 and the monthly charge of carrrying one t-shirt is 50 cents. If the fixed cost of placing an order (e.g. transportation cost etc.) regardless of the order size is $200 and the order arrives instantaneously, what is the optimal number of t-shirts the UNC Student Stores should order every time it places an order and how frequently should the orders be placed?
The world's largest bank. Deutsche Bank set as its objective to make its name more recognizable in the United States. The success of its decision to sponsor a PGA golf tournament to accomplish this organizational objective will ultimately depend on which management function
Legacy issues $570,000 of 8.5%, four-year bonds dated January 1, 2019, that pay interest semiannually on June 30 and December 31. They are issued at $508,050 when the market rate is 12%.
Xie Company identified the following activities, costs, and activity drivers for 2017 The company manufactures two types of go-karts Deluxe and Basic.Activity Expected Costs Expected Activityhandling materials $ 625,000 100,000 partsInspecting product 900,800 1,500 batchesProcessing purchase orders 105,000 700 ordersPaying suppliers 175,000 500 invoicesEnsuring the factory 300,000 40,000 square feetDesigning packaging 75,000 2 modelsRequired:1. Compute a single plantwide overhead rate, assuming that the company assigns overhead based on 125,000 budgeted direct labor hours2. In January 2017, the Deluxe model required 2,500 direct labor hours and the basic model required 6,000 direct labor hours. Assign overhead costs to each model using the single plantwide overhead rate.
Illegal multilevel marketing gimmick that promises commissions on one's own sales as well as on the sales of recruits

Galvanized Products is considering a new computer system for their enterprise data management system. The vendor has quoted a purchase price of $100,000. Galvanized Products is planning to borrow one-fourth of the purchase price from a bank at 15 percent compounded annually. The loan is to be repaid using equall annual payments over a 3-year period. The computer system is expected to last 5 years and has a salvage value of $5,000 at that time. Over the 5-year period, Galvanized Products expects to pay a technician $25,000 per year to maintain the system but will save $55,000 per year through increased effciencies. Galvanized Products uses a MARR of 18 percent/year to evaluate investments.a) what is the present worth of this investment?

b) should the new computer system be purchased?

Answers

Galvanized Products consideration to buy  a new computer system for their enterprise data management system with the purchase price of $100,000 is being a good decision

Explanation:

Purchase value $100,000

cash on hand 75,000 + bank loan 1/4 of $100,000= $25000 =$100,000

Estimated Income                      

(increased efficiencies-payment to technician+MARR )× 5( life span )+ 5000 (salvage value )

(($55,000-$25,000=30,000)+(100,000×18÷100)=18000))×5 =$240,000+5000 = $245,000    

((55,000-25,000=30,000)+(100,000×18÷100)=18000))×5 =240,000+5000 = 245,000

Expected liabilities  

bank loan interest=((P*(1+i)^n) - P)=(25,000×(1+0.15)^3-25,000)= 13,022  

bank loan interest=((P*(1+i)^n) - P)=(25,000×(1+0.15)^3-25,000)= 13,022

Net value of the purchase proposal

 (Estimated Income - Expected liabilities) - Purchase price

     = (245,000 - 13,022) = $231,978 - $100,000 = $131,978 (profit)

  = (245,000 - 13,022) = 231,978 - 100,000 = 131,978 (profit)

Hence ,the Galvanized Products consideration to buy a new computer system is a good decision.

           

Final answer:

The present worth of this investment is -$30,911.60, and the new computer system should not be purchased as the current estimates show that the benefits do not outweigh the costs at the 18% discount rate.

Explanation:

To determine whether the investment is worth it, we will need to calculate the Net Present Value (NPV) of the investment. This takes into account the present value of both the costs and the benefits associated with the investment.

Let's start by calculating the present value of the costs:

  • The system itself costs $100,000.
  • The loan is $25,000, compounded annually at a rate of 15% over 3 years, which results in a total repayment of roughly $31,357.50 using the formula P(1+r)^n.
  • The technician costs amount to a total of $125,000 over 5 years. If we discount these payments back to their present value using the rate of 18%, we get approximately $88,938.24. Using the formula [P/(1+r)^n] for each year and adding them up.

The total present value of costs is therefore roughly $220,295.74.

Next, let’s calculate the present value of the benefits. This is comprised of the $55,000 savings per year due to increased efficiencies, discounted back to present value over 5 years at a rate of 18%, which results in approximately $184,384.14. Then we add the salvage value of the system, which is $5,000, because this value is already in present terms.

The total present value of the benefits is thus around $189,384.14.

The net present value (NPV), calculated by subtracting the present value of costs from the present value of benefits, is thus around -$30,911.60. Since this is a negative value, this suggests that the anticipated benefits of the system does not outweigh its costs at the 18% discount rate.

Therefore: a) the present worth of this investment is about -$30,911.60 and b) the new computer system should not be purchased, based on these calculations and assumptions.

Learn more about Net Present Value Calculation here:

brainly.com/question/32913881

#SPJ3

Write a class called Cashier that directs a cashier how to cash goods and give change to customers. The typical cashier operations are as follows: (a) Cashier clears the cash register machine. (b) Cashier enters the name and the price of each item in the cash registering machine. (c) The customer tenders an amount of money to pay for the goods (We assume the amount covers the total). (d) The cash machine computes: a. The number of items purchased b. The total amount of purchase c. The average price of each item d. The number of coin denominations that the customer should receive. That is, the number of silver dollars, quarters, dimes, nickels, and cents the customer should receive in turn java

Answers

Class Cashier that directs a cashier how to cash goods and give change to customers based on cashier operations is given below.

Explanation:

Use the following class, TestCashier, as the basis for the test class.

class TestCashier

{

public static void main(String[] arg)

{

Cashier c = new Cashier();

String name = GetData.getWord(“Enter name of item”);

double price = GetData.getDouble(“Enter price of item”);

c.add(name, price);

name = GetData.getWord(“Enter name of item”);

price = GetData.getDouble(“Enter price of item”);

c.add(name, price);

// Add a two more entries of your own

// Now average the price of the items

c.average();

// Make payment

double amount = GetData.getDouble(“Enter amount of money for payment”);

c.tendered(amount); // For example twenty dollars were tendered

c.makeChange();

generateReceipt(c);

}

static void generateReceipt(Cahier c)

{

// Write the necessary code that will generate a customer’s receipt.

// The output must be displayed in a scrollable pane

}

}

Description of the output:

The output should be displayed in a scrollable pane, and have the following features:

• The first line displays the name of the establishment.

• Second line reads something like this: Welcome – thanks for stopping, followed by the current date

• The list of items displayed, one item per line – That is, the name of the product and price,

• The sum of all the items

• The number of items purchased

• The average price for each item

• The amount of money tendered

• The amount of change in $ and cents

• The change given in coin denominations

Here is an example of the form of how the output should be ( except that this output must be displayed in a scrollable pane).

Bread............ 2.99

Chicken..........6.79

Egg..................3.07

______________

Total ……….$12.85

The number of items purchased is 3 items

The average price per item is $4.28

Amount tendered is $20.00

The change is $7.15

The change includes

7 dollars

0 quarters

1 dimes

1 nickels

0 cents

Consider the following information: Probability of State Rate of Return if State Occurs
Economy of Economy Stock A Stock B
Recession .20 .010 – .35
Normal .55 .090 .25
Boom .25 .240 .48
a. Calculate the expected return for the two stocks.'

Answers

Answer:

11.15%

Explanation:

The formula to compute the expected rate of return is shown below:

Expected rate of return = (Recession probability× Possible Returns ) + (Normal Probability  × Possible Returns ) + (Boom Probability  × Possible Returns 3)

= (0.20 × 0.010) + (0.55 × 0.090) + (0.25 × 0.240)

= 0.002+ 0.0495 + 0.06

= 11.15%

Simply we multiply the probability with its return so that accurate rate could come.

Laurel, Inc., and Hardy Corp. both have 10 percent coupon bonds outstanding, with semiannual interest payments, and both are currently priced at the par value of $1,000. The Laurel, Inc., bond has six years to maturity, whereas the Hardy Corp. bond has 19 years to maturity.If interest rates suddenly rise by 2 percent, what is the percentage change in the price of each bond?

Answers

Answer:

Laurel = -8.38%

Hardy = -14.85%

Explanation:

Present Price of Bond :

Laurel, Inc. = $1000

Hardy Corp. = $1000

After Percentage Price would be

Laurel, Inc = Present Value (i=6%, n=12, PMT=50, FV=1000)  = $916.16

Hardy Corp = Present Value (i=6%, n=30, PMT=50, FV=1000)  = $851.54

Percentage change in price

Laurel, Inc = (916.16-1000)/1000 = -8.38%

Hardy Corp = (851.54-1000)/1000 = -14.85%

Given the following data, calculate the Total Variable Cost variance. Planning Budget Actual Results Revenue $73,000 $75,000 Variable costs $23,000 $20,000 Contribution margin $50,000 $55,000 Fixed costs $15,000 $10,000 Profit before taxes $35,000 $45,000 a. $3,000 Favorable b. $3,000 Unfavorable c. $5,000 Favorable d. $5,000 Unfavorable e. $2,000 Unfavorable f. $2,000 Favorable

Answers

Answer:

a. $3,000 Favorable

Explanation:

Variable cost variance is the difference between the budgeted variable cost and actual variable cost for a period.

Use following formula to claculate the variable cost variance

Variable cost variance = Budgeted Variable cost - Actual variable cost

Placing values in the formula

Variable cost variance = Budgeted Variable cost - Actual variable cost

Variable cost variance = $23,000 - $20,000

Variable cost variance = $3,000

As the actual cost is less than the budgeted cost, so the $3,000 is saved in respect of variable cost.

Alicia studies with her phone nearby so she can play her favorite music and keep up with what her friends are doing.In this case, how can Alicia make her studying environment more effective?

She can find a more comfortable chair.
She can have more resources available.
She can remove any possible distractions.
She can choose an area with more light.

Answers

In this case, Alicia makes her studying environment more effective as she can remove any possible distractions. The correct option is c.

What is studying?

Studying is crucial for personal skill development in addition to educational advancement. Your confidence, skill, and self-esteem can all be increased by having effective study techniques. Additionally, it aids in lowering tension and worry related to tests and deadlines.

Take anything out of your study area that is not necessary for studying. To lessen auditory distractions, wear noise-canceling headphones, listen to white noise, or try utilizing earplugs. Eliminate electronic irritants. Put your phone in silent mode and away from your line of sight.

Therefore, the correct option is c. She can remove any possible distractions.

To learn more about studying, refer to the link:

brainly.com/question/17096654

#SPJ6

Answer:

C

Explanation:

edgen 2020

Other Questions
Transfer Pricing, Idle Capacity Mouton & Perrier, Inc., has a number of divisions that produce liquors, bottled water, and glassware. The Glassware Division manufactures a variety of bottles that can be sold externally (to soft-drink and juice bottlers) or internally to Mouton & Perrier's Bottled Wat Division. Sales and cost data on a case of 24 basic 12-ounce bottles are as follows Unit selling price Unit variable cost Unit product fixed cost* Practical capacity in cases $350,000/500,000 During the coming year, the Glassware Division expects to sell 390,000 cases of this bottle. The Bottled Water Division currently plans to buy 100,000 cases on the outside market for $2.95 each. Ellyn Burridge, manager of the Glassware Division, approached Justin Thomas, manager of the Bottled Water Division, and offered to sell the 100,000 cases for $2.89 each. Ellyn explained to Justin that she can avoid selling costs of $0.12 per case by selling internally and that she would split the savings by offering a $0.06 discount on the usual price $2.95 $1.25 $0.70 500,000 Required 1. What is the minimum transfer price that the Glassware Division would be willing to accept? Round to the nearest cent. per unit What is the maximum transfer price that the Bottled Water Division would be willing to pay? Round to the nearest cent. per unit Should an internal transfer take place? Yes What would be the benefit (or loss) to the firm as a whole if the internal transfer takes place? Benefit V $ 2. Suppose Justin knows that the Glassware Division has idle capacity. Do you think that he would agree to the transfer price of $2.89? No Suppose he counters with an offer to pay $2.40. If you were Ellyn, would you be interested in this price? Yes 3. Suppose that Mouton & Perrier's policy is that all internal transfers take place at full manufacturing cost. What would the transfer price be? Round to the nearest cent. per unit