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
Lady_Fox [76]
1 year ago
8

When brandon decided he needed a new car, he immediately called his old college roommate who owns a bmw dealership to ask questi

ons about options and financing. brandon was searching for information from?
Business
2 answers:
vova2212 [387]1 year ago
6 0

Complete Question:

When Brandon decided he needed a new car, he immediately called his old college roommate who owns a BMW dealership to ask questions about options and financing. Brandon was searching for information from?

a. an external source.

b. an internal locus of control.

c. a reference source.

d. an internal source.

e. a situational factor group.

Answer:

Option a. an external Source

Explanation:

An external source is also a person that you can reach out to, who is on the outside to help provide adequate knowledge or advice that you require to tackle or solve a particular problem or situation.

An external source can also be defined an outside source that renders important help or gives adequate and essential information to a person who needs such information.

vlada-n [284]1 year ago
4 0

Brandon was seeking <u>external information.</u>

External information is any information used to make a business decision that comes from an external source - examples are newspapers, trade journals, business associates, and publications.

You might be interested in
The concepts of flexibility and real options are closely related to the importance of history and ________ described as potentia
Fittoniya [83]

Answer:

The correct answer is letter "A": path dependence.

Explanation:

Path dependency refers to the stage in which a company does not engage new ventures because it is too familiar with its current processes. Besides, the entity has the belief that continuing with the historical product is has been offering is more cost-effective than engaging in the production of a new good.  

<em>The competitive advantage of the institution remains the same during the whole time which is a weakness because the market of the firm could change but the firm does not implement any measure to keep the pace of the market fluctuations.</em>

5 0
2 years ago
You are a Director in the Andrews Corporation. Your boss called you to inform you that there is a proposed layoff in your depart
Luden [163]

Answer:

Making sure that Shelia understands the economic need for laying-off staff.

Explanation:

Lay-offs and the communication associated with it is never a pleasant topic for the employee who is getting laid-off, but also for the person who is in charge of delivering the message.

The key takeaway when communicating things related to lay-offs is the distinction between <em>lay-offs</em> and <em>employee firing due to bad performance</em>. Lay-offs are never the result of an individual's bad performance or mistakes regarding work, instead, they are always related to business issues, such as mandatory downsizing. All in all, lay-offs are always about <em>economic issues </em>regarding the business.

That's why it is irrelevant to talk about personal traits and the lay-off process since it is not the employee's fault.

6 0
2 years ago
Read 2 more answers
29. Don and Evon orally agree on the sale of Don's Electrical Supplies Company to Evon and jot down the terms on the back of one
vekshin1

Answer:

the essential terms of the contract.

Explanation:

Generally contracts that involve large transactions like selling a company must be made in writing and must be signed by all the parties. In this case, the sort of wrote a summary of the basic terms of the sale on the back of an invoice, and at least they signed it. As it is, the contract might not be enforceable because it probably lacks a lot of important details, since the amount of space used to write it down was very small specially considering that most of the space was used for the signatures.

So in order to prevent any future problems, and to comply with the statute of frauds, they should make a written memorandum that includes the essential and important terms of the contract, which must be signed also. They could also write down a proper sales contract since they are signing it again.

The statute of frauds establishes that certain contracts must be done in writing, and since this contract probably involves a significant amount of money, it probably falls under it.

6 0
1 year 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
Computing Depreciation and Accounting for a Change of Estimate Lambert Company acquired machinery costing $110,000 on January 2,
lesya692 [45]

Answer: please see answers in explanation column

Explanation:

a) Under straight-line method,

 Depreciation expense =(Cost - residual value) ÷ No of years =

= ($110,000 - $15,000) ÷ 6 years = $15,833  which refers to the yearly depreciation expense.

Therefore,  the yearly depreciation expense of $15,833 will be applied to the Years 2019, 2020 and 2021.

Total depreciation for all the three years equals  

 $15,833 x  3 years = $47,499.

(b) The double-declining method

which is  2 x  Straight - Line Depreciation Percentage x Book value

 Straight - Line Depreciation Percentage

100% ÷ 6 years = 16.67%,

 Therefore, Year 2019= 2 x  16.67% x  $110,000 = $36,663

Year 2020=2 x  16.67% x  $73,337 ($110,000 - $36,663) = $24,443

Year 2021=2 x  16.67% x $48,894 ($73,337 - $24,443) = $16,296

The total of the three years ie 2019 to 2021  =$77,402

(c) Given that in 2021 which is  after 2 years, the revised estimated useful life becomes 7 years and the residual value is $10,000

Depreciation Using  the straight-line method becomes  

Depreciation expense =(Cost - residual value) ÷ No of years

But Net Book Value, which is the cost  at the end of 2019  

$110,000 - $15,833  x  2 years = $78,334

Therefore, Depreciation expense= ($78,334 - $10,000) ÷ 7 years = $9,762  

Also,

Using double-declining method,

Straight - Line Depreciation Percentage = 100% ÷ 7 years = 14.29%,

Year 2021,

2 x 14.29% x $48,894 ($73,337 - $24,443) = $13,969

6 0
1 year ago
Other questions:
  • The idea for "price profit," an app that businesses can use to track their revenue, profit, and payroll, is protected by
    9·2 answers
  • Effective managers know how to combine both the art and science of management to address the broad range of issues they encounte
    5·1 answer
  • Chocolotto, a chocolate manufacturer, displays a brown dot in a brown square symbol, instead of a green dot in a green square sy
    7·1 answer
  • Direct Materials Used, Cost of Goods Manufactured In September, Lauren Ashley Company purchased materials costing $200,000 and i
    11·1 answer
  • Poorer developing countries which often produce and export primary commodities tend to face unfair _____________________ in rela
    12·1 answer
  • The Deluxe Store is located in midtown Madison. During the past several years, net income has been declining because of suburban
    8·1 answer
  • A country's economic data indicates that there has been a substantial reduction in the financial capital available to private se
    8·1 answer
  • For the next 2 questions, use the financials of Acme Corporation. After adjusting revenue for accounts receivable and deferred r
    7·1 answer
  • A quantitative method used to evaluate multiple locations based on total cost of production or service operations is called:
    11·1 answer
  • You bought a stock six months ago for $80.82 per share. The stock paid no dividends. The current share price is $86.59. Required
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!