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
laila [671]
3 years ago
6

A director violates the corporate opportunity doctrine if he or she competes with the corporation, unless the disinterested dire

ctors approve of the director's actions.
1. True
2. False
Business
1 answer:
DIA [1.3K]3 years ago
8 0

The given statement " A director violates the corporate opportunity doctrine if he or she competes with the corporation, unless the disinterested directors approve of the director's actions " is TRUE

Explanation:

A business opportunity applies to any business opportunity that a client may gain.

The Corporate Opportunity law controls the moral responsibility of directors, managers and managing stockholders in an organisation, with loyalty responsibilities, not to misuse such incentives without first offering to the corporate board the right to reject the opportunity on behalf of the company.

When these actions are broken and a director of the company takes the chance, then the trustee has abused his obligation to be trustworthy and will be able to maintain a constructive trust with the proceeds arising from the incorrect transaction.

You might be interested in
Tom, the store manager, recently had to fire Jan, an employee who graduated from Paradise College. He felt that Jan was not well
loris [4]

Answer:

representativeness bias

Explanation:

Representativeness bias -

It is also known as representativeness heuristic .

Heuristics refers to the use of some mental shortcuts during the process of judging or decision making .  

The term representativeness heuristic was first given in the year 1970 , by psychologists Daniel Kahneman and Amos Tversky .  

The use of heuristic for making any judgement by the use of comparison , is referred to as representativeness heuristic .  

The process involves comparison with some predefined object or situation , with the new object or scenario , makes the process of understanding much more easier .  

Hence , from the given information of the question ,  

The correct term is representativeness heuristic .  

5 0
3 years ago
What are the 3 main factors that affect the labor market
Fynjy0 [20]
<span><span>Economy- Macroeconomic conditions affect labor supply and demand. Job losses during a recession mean less disposable income for consumers and less demand for cars.</span>
<span>Globalization-Globalization involves the import of foreign automobiles and relocation of manufacturing facilities overseas. This has led to a steady decline in U.S. automobile-sector employment.</span>
<span>Compensation- Compensation includes wages and benefits. According to an April 2011 U.S. Bureau of Labor Statistics report, there has been upward pressure on wages and downward pressure on benefits.</span>
</span>
6 0
3 years ago
You have just received notification that you have won the $1.4 million first prize in the Centennial Lottery. However, the prize
Arada [10]

Answer:

Present value = $6404.20

Explanation:

Data provided in the question :

Amount of the Centennial lottery prize won = $1.4 million = $1,400,000

Time after which the amount will be received, n = 70 years

Discount rate, r = 8%

Now,

the present values is given as:

\textup{Present value}=\frac{\textup{Principle amount}}{(1+r)^n}

on substituting the respective values, we get

\textup{Present value}=\frac{\textup{$1,400,000}}{(1+0.08)^70}

or

Present value = $6404.20

6 0
3 years ago
g Enchancia Inc. reported the following information at its annual meeting: The company had cash worth $3,290,558, accurals of $5
olga55 [171]

Answer:

$5,354,741

Explanation:

assets:

cash $3,290,558

inventory $2,657,360

accounts receivable $577,102

fixed assets $4,019,047

total assets = $10,544,067

liabilities:

accruals $576,944

accounts payable $2,519,541

notes payable $610,904

long-term debt $1,481,937

total liabilities = $5,189,326

equity = assets - liabilities = $10,544,067 - $5,189,326 = $5,354,741

5 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:
  • Farmco just paid its annual dividend of $.32 per share. The dividends are expected to grow at 25 percent annually for the next 4
    6·1 answer
  • John: "I will sell you my laptop computer for $330." Mary: "Will you include the carrying case"? John: "Sold." a. There is a con
    9·1 answer
  • Ashley wants to increase the profits of her e-business. what two ways can be used to accomplish her goal of increasing profits?
    10·1 answer
  • A monopoly creates a deadweight loss to society because it produces less output than the socially efficient level.
    11·1 answer
  • In developing a measure of "need for cognition" (the degree to which people like thinking and problem-solving), Dr. Jonason asks
    5·1 answer
  • Use the contribution margin ratio to project operating income​ (or loss) if revenues are $ 520.000 and if they are $ 1.040.000.
    7·1 answer
  • You have been asked to assist a retail company. It sells clothing and would like to have a Point of Sale computer installed to h
    8·1 answer
  • Dave manages a Shoney's restaurant. He is considering staying open later in the evening. For Dave, the variable costs associated
    11·1 answer
  • The accounting equation can be stated as
    6·1 answer
  • True or False When evaluating the choice you made you should never second guess your decision? Pls help
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!