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
maks197457 [2]
2 years ago
11

Greta loses her two dogs. She puts signs all over town that offer a $50 reward for the return of her dogs. Al and Ben see the po

sters, and both go find a dog. Al finds one of Greta's dogs, but Ben only finds a look-alike. Charlie does not see the posters, but finds a dog with Greta's address on it. If all three boys show up at Greta's house, who, under the common law of contracts, will Greta have a legal obligation to pay?
Business
1 answer:
boyakko [2]2 years ago
3 0

Answer:

Al

Explanation:

In order for a contract to be formed, both parties must reach an agreement (usually through offer and an acceptance of terms). The offer made by Greta was a $50 reward for her missing dogs, Al and Ben agree to the contract by searching for the dogs. Since Al finds and returns one of the Dogs, Greta has an obligation to pay Al. As for Ben, since he failed to meet the terms, he should not be paid. On the other hand, since Charlie never saw the posters, there was no contract formed because he could not possibly agree to terms he was not aware, and Greta has no legal obligation to pay Charlie.

Therefore, Greta has a legal obligation to pay Al.

You might be interested in
I'LL GIVE BRAINLIST!!!
vesna_86 [32]

Answer:

C. he was happy to learn that he would be given a loan to cover all college expenses.

Explanation:

A student that is given a loan to cover college expenses have to go for entrance counselling in order to receive appropriate orientation and he will also have to sign promissory note that he will return the loan given.

8 0
2 years ago
Read 2 more answers
Fashion, Inc. had a Retained Earnings balance of $16,000 at December 31, 2021. The company had an average income of $6,500 over
avanturin [10]

Answer:

Total amount of dividends paid over the last three years is $20500

Explanation:

The net income of the company is either retained in the company or paid out as dividends. To calculate the value of the ending retained earnings, we use the following formula,

Ending balance = Beginning balance + Net Income - Dividends

We first need to calculate the total net income for the 3 year period. The total net income for the 3 year period is, 3 * 6500 = $19500

Plugging in the available values for the ending and beginning balance of retained earnings and net income, we can calculate the value of total dividends paid for the three year period.

15000 = 16000 + 19500 - Dividends

Dividends = 35500 - 15000

Dividends = $20500

4 0
1 year ago
Jerome, Inc., paid $8,850 to make a debt investment in trading securities of Tedesco, Inc. On December 30, (within the same fisc
pogonyaev

Answer:

Date                                      General Journal        Debit Credit

                                                     Debt investment        8850  

                                                     Cash                                           8850

Dec 30                                       Cash                           7000  

                                                     Debt investment                                 6500

                                                     Gain on sale of investment              500

Explanation:

6 0
2 years ago
Knowledge about challenges specific to the operations function can help marketing personnel to judge how _____________ new produ
Goshia [24]

Answer: Identifying the consumer needs, advertising and promotion, pricing.

Explanation:

 According to the given question, the knowledge about the different types of challenges regarding the specific operations and the functions that helps in marketing the new design of the products and it also helps in judge the pricing, advertisement and the promotion of the new products in the market.

 In the marketing, the main function is to identifying the actual requirement of the customer and also helps in influence the competitiveness in the market.

 Therefore, The given answer is correct.  

7 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:
  • Lucy Zimmerman has organized her craft shop as a sole proprietorship. Her sister has warned her about _____, the legal principle
    14·1 answer
  • Suppose a family has saved enough for a 10 day vacation (the only one they will be able to take for 10 years) and has a utility
    8·1 answer
  • For the past five years, the RS Company has produced and sold electronic magnets to chemistry labs throughout the United States.
    11·1 answer
  • On his road trip, Leon stops to refuel and get some snacks. He has the following purchases: 12 gallons of gas at $2.89 per gallo
    11·2 answers
  • The Parts Division of Nydron Corporation makes Part Y6P, which it sells to outside companies for $17.00 per unit. According to t
    7·1 answer
  • Karl Metzger plans to invest $5,000 in a partnership with his brother to produce and sell handcrafted violins, zithers, and othe
    12·1 answer
  • You have been asked by the president of your company to evaluate the proposed acquisition of a new special-purpose machine. The
    10·1 answer
  • The Digby company will continue to train their existing workforce at their current level to help reduce turnover and improve pro
    6·2 answers
  • Christie temporarily lends her car to her friend, Matt. Subsequently, Matt is involved in an accident while driving Christie’s c
    14·1 answer
  • R. L. Ybarra employs John Ince at a salary of $53,000 a year. Ybarra is subject to employer Social Security taxes at a rate of 6
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!