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
alukav5142 [94]
3 years ago
14

1. DISCUSSION Although many argue that the gig economy has opened up opportunities for individuals to be self-employed in ways t

hat complement their lifestyle, the investments that gig giant Uber is making suggest a different kind of future for the uber-successful taxi substitute. 1. What do think Uber has in mind
Business
1 answer:
FromTheMoon [43]3 years ago
5 0

Answer:

Uber’s main angel is to become the main source for the transportation of people and local commerce around the country. This means ” adding scooters, bikes, public transportation schedules (and, even the ability to buy tickets) to Uber’s app. They  will make it easier for more people to work for them and also it will benefit them financially.

Explanation:

You might be interested in
_____ planning normally is performed by middle managers and typically has a one-year time frame? 1. Strategic planning 2. Tactic
Ray Of Light [21]
TACTICAL planning normally is performed by middle managers and typically has a one-year time frame.The correct answer is 2nd
8 0
3 years ago
The Beauty Beyond Words Salon uses an activity-based costing system in its beauty salon to determine the cost of services. The s
maksim [4K]

Answer:

The correct option is a. $7.50.

Explanation:

Note: The data in this question are merged together. They are therefore sorted before answering the question. See the attached pdf file for the complete question with the sorted data.

The explanation of the answer is now provided as follows:

Activity-based costing is a costing system that involves identifying an organization's activities and assigning the cost of each activity to all products and services based on actual consumption.

Based on the data in the question, a haircut requires ​one units each of Hair Washing and Conditioning, while it requires zero unit of each of Chemical Treatment and Styling.

Therefore, we have:

Cost of services for a haircut = (Units of Hair Washing * Rate of Hair Washing) + (Units of Conditioning * Rate of Conditioning) = (1 * $4.00) + (1  $3.50) = $4.00 + $3.50 = $7.50

Therefore, the correct option is a. $7.50.

Download pdf
5 0
2 years ago
To avoid the difficulties involved in starting a business from scratch, Sana decides to obtain the rights to operate an outlet o
Mariana [72]

Answer:

Franchisee

Explanation:

A franchise business is a form of business arrangement where a business owners , who is known as the franchisor , sells the right to operate its business to another entity known as the Franchisee.

This business arrangement is legally binding an it gives right to the use of the business name , logo ,and model to third party retail outlet.

This explains the type of business arrangement that Sana is planning , considering the explanation given in the question.

8 0
3 years ago
Read 2 more answers
In 2022, internal auditors discovered that Axel Corp., had debited an expense account for the $2,090,000 cost of a machine purch
antoniya [11.8K]

Answer:

Debit Depreciation expense $570,000

Credit Accumulated depreciation $570,000

<em>(To record the accumulated depreciation for 3 years)</em>

Explanation:

Using a Straight-line depreciation method, depreciation expense = (Cost - Salvage value)/Estimated useful life

Depreciation expense = $2,090,000 / 11 years = $190,000 yearly

We would assume that the internal auditors detected the error at the beginning of Year 2022, so the accumulated depreciation for 3 years (Jan 2019 - Dec 2021) would be $190,000 x 3 years = $570,000

The following correctional entries will apply:

Debit Fixed asset - Machine $2,090,000

Credit Expense account $2,090,000

<em>(To appropriately record the purchase of machine)</em>

The required adjustment fot the accumulated depreciation is recorded above under the answer section.

3 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:
  • Crank Co. is a software developer that has accumulated costs related to developing a software application for internal use. The
    6·1 answer
  • Which of the following might help you succeed at a job interview?
    11·1 answer
  • a form of bank service which automatically takes money out of a checking account at the point of sale is called a? A) debut card
    5·1 answer
  • A local bank will pay you $275 at the end of each year for your lifetime if you deposit $4,400 in the bank today. If you plan to
    15·1 answer
  • All countries have what type of economy
    12·1 answer
  • A common room pricing strategy used by hotels is to price each day for which this room can be reserved, as discussed in the lect
    6·1 answer
  • Prepare a cost estimate for the construction of a small, high quality, office building that contains 18,525 square feet of floor
    7·1 answer
  • How do managers decide upon an ethical course of action when confronted with decisions pertaining to working conditions, human r
    14·1 answer
  • Job destroyer? ~ The Wellcome Global Monitor is the world’s largest study into how people around the world think and feel about
    15·1 answer
  • the houston metro area represents which problem that exists in creating functional mass transit systems in texas?
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!