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
ANEK [815]
3 years ago
14

Moises has dreamed of setting up a graphic design company since he was in college. He always knew he wanted to work from home an

d he now had several leads for prospective customers. He also knew how much money he needed to make to cover his expenses. He had several ways to approach his new business including working by himself or taking on a partner. Both ways needed more thought to determine what each would involve. In terms of the rational decision-making model, Moises is in which of the following steps?a) developing alternatives.
b) define the situation.
c) tactical.
d) emphasize teamwork.
Business
1 answer:
anastassius [24]3 years ago
6 0

Answer: (A) Developing alternative

Explanation:

 The rational decision is one of the type of model that helps in providing the various types of advantages and also reducing the overall structural cost by making the choices from the given alternatives.

The economical theory is one of the idea behind the rational concept and developing the alternatives is one of the important step of this model.

 According to the given question, Moises is basically using the main step in the rational decision making model that is developing the alternatives as it providing the expertise tool and the knowledge.    

  Therefore, Option (A) is correct answer.

You might be interested in
How soon following the occurrence of a covered loss must an insured submit written proof of such loss to the insurance company?
dolphi86 [110]

Answer:

The answer is: Within 90 days; about 3 months.

6 0
3 years ago
The United States is able to experience economic growth to the extent that
kvasek [131]

Answer:

The correct answer is the option E: consumers are encouraged to buy domestically produced goods.

Explanation:

To begin with, in order to the economy to grow the country must encourage the consumers to buy more domestically produced goods so that the when the demand increases so does that income of the firms and that impacts in the demand that the companies do as well. Therefore that the country, and that is, the firms and the government, should encourage the increase of consumption from the buyers in order to intend to experience an economic growth.

6 0
3 years ago
Read 2 more answers
Why is it important to look at external sources of information when exploring product and service information?
baherus [9]

They help you find unbiased information about the product’s actual performance.

6 0
3 years ago
Read 2 more answers
The before-tax income for Culver Co. for 2017 was $101,000 and $84,100 for 2018. However, the accountant noted that the followin
valentina_108 [34]

Answer:

Corrected income before tax year 2017 = $65,690  

Corrected income before tax year 2018 = $102,467

Explanation:

According to the scenario, computation of the given data are as follow:-

 

Particular                                            Year 2017 ($) Year 2018 ($)    

Income before tax                                            101,000    84,100    

Corrections      

1. In 2017, unearned sales                           -36,200      

Sales added in 2018                                                      36,200    

2. In 2017, understated ending inventory    9,500      

In 2018, overstated opening inventory                      -9,500    

3. Add-wrongly charged interest expenses    13,800            13,800    

Less-actual interest expenses      

In 2017 ($230,000-$14,000)×7%=$216,000×7% -15,120      

In 2018, bond of carrying amount

       =$216,000+($15,120-$13,800)=$217,320      

In 2018, Actual interest expense=($217,320×7%)    -15,212    

4 Add-wrongly charged depreciation expenses      

In 2017=($8,100×10%)                                           810      

In 2018,=($8,100-$810)×10%+$8,500×10% =                      1,579    

Less-actual expenses for repairs                          -8,100    -8,500    

Corrected income before tax                         65,690   102,467    

     

4 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:
  • Leslie Bradley is an entrepreneur with a small business in Little Rock, Arkansas. Working with a local engineer/inventor, Leslie
    8·1 answer
  • ________ are said to be at "arm's length," while ________ are to be reported separately in the financial statements.
    8·1 answer
  • Struggling with this one
    13·1 answer
  • A loan is a sum of money that is borrowed from a financial institution and then paid back in______
    6·2 answers
  • Each time a politician or celebrity writes a book, bookstores can expect at least some customers to want the book, but whether i
    15·1 answer
  • A chart that shows the connection between consumer demand and price is a
    9·2 answers
  • Lenore, a single California taxpayer, has taxable income before capital gains of $78,000 and a long-term capital gain of $5,000
    8·1 answer
  • Inventory records help determine how many items of material, components, and subassemblies need to be ordered to make the final
    7·1 answer
  • At a higher price the quantity supplied of a product typically is<br><br> higher or lower
    9·1 answer
  • concord corporation purchased a new machine on may 1, 2012 for $559200. at the time of acquisition, the machine was estimated to
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!