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
mrs_skeptik [129]
3 years ago
10

Select all that apply GAAP and IFRS rules ______. require that the same method be used for both internal and external segment re

porting create incentives for companies to use the contribution margin format in segment reporting require segmented financial data be included in annual reports create problems in reconciling internal and external reports
Business
1 answer:
Alexxandr [17]3 years ago
4 0

Answer:

The correct options are "A, C, and D".

Explanation:

  • GAAP becomes regarded as a relatively 'rules-based' management framework, seems to be the accounting technique used throughout the United States
  • IFRS becomes quite 'principles-based', although this would be the accounting framework used in more than 110 countries throughout the globe.
  • These allow the same approach being used for international and domestic section reporting, which generate reconciliation issues.

You might be interested in
If you say $4500 at an interest rate of 13% per year, how much will you have at the end of seven years
SashulF [63]

Explanation:

I think it might be 5455$

4 0
11 months ago
The cost for a carton of milk is $3, and it is sold for $5. When the milk expires, it is thrown out. You also know that the mean
svetlana [45]

Answer:

a) $3

b) $2

c) 1449

Explanation:

Given:

The cost for a carton of milk = $3

Selling price for a carton of milk = $5

Salvage value = $0        [since When the milk expires, it is thrown out ]3

Mean of historical monthly demand = 1,500

Standard deviation = 200

Now,

a) cost of overstocking = Cost  for a carton of milk - Salvage value

= $3 - $0

= $3

cost of under-stocking = Selling price - cost for a carton of milk

= $5 - $3

= $2

b)  critical ratio = \frac{\textup{cost of under-stocking }}{\textup{cost of overstocking + cost of under-stocking }}

or

critical ratio = \frac{\textup{2}}{\textup{3 + 2}}

or

critical ratio = 0.4

c) optimal quantity of milk cartons = Mean + ( z × standard deviation )

here, z is the z-score for the critical ration of 0.4

we know

z-score(0.4) = -0.253

thus,

optimal quantity of milk cartons = 1,500 + ( -0.253 × 200 )

= 1500 - 50.6

= 1449.4 ≈ 1449 units

4 0
3 years ago
Sunland Company collected $22400 in May of 2016 for 4 months of service which would take place from October of 2016 through Febr
kati45 [8]

Answer:

There is something wrong with this question because October to February is not four months, it's five months.

We can calculate this assuming 3 months of 2016 (October, November, December) and 2 months of 2016 (November and December).

  • 3 months of 2016 = ($22,400 / 4 months) x 3 months = $16,800
  • 2 months of 2016 = ($22,400 / 4 months) x 2 months = $11,200

No option is correct.

6 0
2 years ago
Navel County Choppers, Inc., is experiencing rapid growth. The company expects dividends to grow at 23 percent per year for the
Nina [5.8K]

Answer:

P0 = $77.397794 rounded off to $77.40

Explanation:

The two stage growth model of DDM will be used to calculate the price of the stock today. The DDM values a stock based on the present value of the expected future dividends from the stock. The formula for price today under this model is,

P0 = D0 * (1+g1) / (1+r)  +  D0 * (1+g1)^2 / (1+r)^2  +  ...  +  D0 * (1+g1)^n / (1+r)^n  + [(D0 * (1+g1)^n  *  (1+g2) /  (r - g2))  /  (1+r)^n]

Where,

  • g1 is the initial growth rate
  • g2 is the constant growth rate
  • D0 is the dividend paid today or most recently
  • r is the required rate of return

P0 = 1.89 * (1+0.23) / (1+0.15)  +  1.89 * (1+0.23)^2 / (1+0.15)^2  +  

1.89 * (1+0.23)^3 / (1+0.15)^3  +   1.89 * (1+0.23)^4 / (1+0.15)^4  +  

1.89 * (1+0.23)^5 / (1+0.15)^5  +  1.89 * (1+0.23)^6 / (1+0.15)^6  +  

1.89 * (1+0.23)^7 / (1+0.15)^7  +  1.89 * (1+0.23)^8 / (1+0.15)^8  +  

1.89 * (1+0.23)^9 / (1+0.15)^9  +  1.89 * (1+0.23)^10 / (1+0.15)^10  +  

[(1.89 * (1+0.23)^10  *  (1+0.07)  / (0.15- 0.07))  /  (1+0.15)^10]

P0 = $77.397794 rounded off to $77.40

8 0
3 years ago
Charge a $5 penalty if an attempt is made to withdraw more money than available in the account.Here the account string is "S" or
romanna [79]

Answer:

C++ code is explained below

Explanation:

class Account {

 double balance;

 double add(double sum) {

   balance += sum;

   return sum;  

 }

 double withdraw(double sum) {

   if (sum > balance) {  

     balance -= 5;

     return -5; // this will come in handy in Prob. 6  

   } else {  

     balance -= sum;

     return balance; // Notice: always >= 0 (never < 0)

   }

 }

 double inquire() { return balance; }  

 Account() { balance = 0; }

 Account(double sum) { balance = sum; }

 double interest (double rate) {

   return rate * balance;  

 }

}

_______________________________

class Bank {

 Account checking;

 Account savings;  

 void deposit(double amount, String account) {

   if (account.equals("C")) checking.add(amount);  

   else // my default

     savings.add(amount);  

 }

 void withdraw(double amount, String account) {

   if (account.equals("C")) checking.withdraw(amount);  

   else // my default

     savings.withdraw(amount);  

 }

 void transfer (double amount, String account) {

   if (account.equals("C"))  

     if (checking.withdraw(amount) >= 0)  

       savings.add(amount);  

     else checking.add(5); // somewhat fault-tolerant

   else // default

     if (savings.withdraw(amount) >= 0)  

       checking.add(amount);  

     else savings.add(5);  // no penalty for transfers

 }

 void printBalances() {

   System.out.println(

     "Checking: " + checking.inquire() +

     "\nSavings: " + savings.inquire()

   );  

 }

}

8 0
2 years ago
Other questions:
  • Shared values among employees are the glue of successful management <br> a. True <br> b. False
    5·1 answer
  • What is the range of useful life estimates that Tesla provides for office furniture, machinery and equipment in the 2013 10-K?a.
    15·1 answer
  • Which graph shows the relationship between the aggregate price level and the aggregate quantity supplied over time?
    5·1 answer
  • Jamie is analyzing the estimated net present value of a project under various conditions by revising the sales quantity, sales p
    15·1 answer
  • Dopson's Hardware was in bad financial shape. It owed so much money that vendors put the store on a cash-only delivery basis. As
    7·1 answer
  • Do you think the licensing process for international medical graduates is an unnecessary hurdle meant to shield U.S. doctors fro
    13·1 answer
  • 2. An A firm has sales of $10 million, variable costs of $4 million, fixed expenses of $1.5 million, interest costs of $2 millio
    8·1 answer
  • ________ refers to the impaired decision making that occurs in a team when making the right decision is less important than main
    12·1 answer
  • The demand for seats in 10 a.m. classes at the College of the Canyons is higher than the demand for seats in 8 a.m. classes. The
    10·1 answer
  • The idea that firms will get the most for their money when they pay wages higher than the equilibrium wage is called:
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!