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
Ostrovityanka [42]
1 year ago
5

A mass transit authority charges bus fares of $1.25 during morning rush hours but only $1.00 during late morning non-rush hours.

Economists explain the fare difference by the fact that the demand for bus rides during the morning rush hours is __________ but during the late morning it is __________.
more elastic; more inelastic
perfectly elastic; perfectly inelastic
more inelastic; more elastic
unitarily elastic; relatively inelastic
Business
1 answer:
amm18121 year ago
7 0

Answer:

The correct answer is more inelastic; more elastic.

Explanation:

Inelastic demand is that demand that is not very sensitive to a change in price. In this way, before a variation in the price the quantity demanded reacts in a less than proportional way. For example, if the price increases by 10% and in response the quantity demanded is reduced by less than 10%, then the demand is said to be inelastic.

The elasticity of demand, also known as the elasticity-price of demand, is defined as the percentage change of the quantity demanded before a percentage change in the price.

An elastic demand is that demand that is sensitive to a change in price. In this way, a small variation in the price causes a more than proportional change in the quantity demanded. Thus, for example, if the price increases by 10% and in response the quantity demanded is reduced by more than 10%, then the demand is said to be elastic.

You might be interested in
(6 points) Life rating in Greece. Greece faced a severe economic crisis since the end of 2009. Suppose a Gallup poll surveyed 1,
miv72 [106K]

Answer:

1. B. The actual proportion of Greeks who believe they are suffering.

2. This is the proportion of Greeks in the sample considered, i.e p = 0.25

3. n = 250 phat - 25% — 0.25 z score - 5%/2 —  2.5 on each end — z = 1.9 se - use formula - .0470.25 +/- 1.9 x .027+: .3675 -: .1325.

4. A. wider

5. B. narrower

Explanation:

In this question, it is essential to estimate the actual population of Greeks that believe they are extremely poor and also suffering. This will be used for proper sampling. Furthermore, in the sample considered, it was discovered that the parameter point estimate is approximately 25% and a change in the sample size or confidence level will alter the interval.

3 0
1 year ago
Anya, sales manager for Pacific Lumber, tells Ricardo, the firm's inventory manager, that the firm's failure to have adequate su
zaharov [31]

Answer:

The correct answer is B

Explanation:

Stockout or OOS stands for Out of Stock, which is event that causes the inventory to be exhausted. It occur with the entire supply chain.

In this case, Firm is facing failure for having adequate or enough supplies on hand, which result in the lost sales amounts to $175,000. It is representing the Stockout in the inventory management costs.

3 0
2 years ago
Gilbert Company made an ordinary repair to a delivery truck during 2016 at a cost of $500 and capitalized the repair cost. What
Leto [7]

Answer:

The answer is:

Asset will be overstated

Net income will be overstated

Explanation:

Because of the incorrect capitalization(the process of converting or adding to a firm's asset):

1. Assets are overstated. Assets that shouldn't are added to the entire assets are added. So it's increasing the company's asset whereas it's not.

2. Net income are overstated. Because depreciation too will have to be charged for the asset that wasn't there, therefore, net asset will be overstated.

7 0
1 year ago
Beacon company is considering automating its production facility. the initial investment in automation would be $15 million, and
marin [14]

Additional Information:

Net Operating Income before investment            $1,710,000

Net Operating Income After investment               $2,690,000

Answer:

12.65%

Explanation:

Now the project's accounting rate of return can be calculated using the following formula:

Accounting rate of return = Average Project Net Income / Avg. Investment

Here

Average Project Net Income is $980,000 per year (Step1)

and

Average investment is $7,750,000 (Step2)

By putting values, we have:

Accounting rate of return = $980,000 / $7,750,000   = 12.65%

Step1: Average Project Net Income

The relevant cash generated due to additional sales is the difference of the net operating income before investment and after investment, which is:

Investment Profit per year = $2,690,000  -  $1,710,000 = $980,000 per year

<u>Step2: Average Investment</u>

Average Investment = (Initial Investment + Residual Value) / 2

Here

Initial Investment is $15 million

and

Residual Value is $0.5 million

So by putting values, we have:

Average Investment = ($15 million + $0.5 Million) / 2 = $7.75 million

6 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
Other questions:
  • What allows consumers to receive goods and services in a non-price rationing system?
    11·1 answer
  • In a perfectly competitive industry, the industry demand curve is ____, while in a monopolistic industry, the industry demand cu
    6·1 answer
  • Tusa Corporation is a manufacturer that uses job-order costing. The company closes out any overapplied or underapplied overhead
    12·1 answer
  • Emma, the marketing manager, is constantly seeking information about her competition while looking online or speaking to people.
    6·1 answer
  • Mountain Dental Services is a specialized dental practice whose only service is filling cavities. Mountain has recorded the foll
    7·1 answer
  • On December 31, 2020, Central Freight reported an allowance for uncollectible accounts of $15,300. During 2021, Central wrote of
    12·1 answer
  • Eloise, an engineer for an oil company, is interested in working overseas at this stage of her life because she knows that forei
    14·1 answer
  • During the ____ phase of team implementation, managers have withdrawn from the daily operations and are counseling teams. Group
    10·1 answer
  • Gabi Gram started The Gram Co., a new business that began operations on May 1. The Gram Co. completed the following transactions
    5·1 answer
  • The question, "What are the distinguishing characteristics of effective leaders?" sparked which approach to the study of leaders
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!