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
Kryger [21]
2 years ago
6

Carol was preparing for the next employee appraisal at her company. She already had her work accomplishments documented and read

y to present. She realized that a desired promotion would take her to a position where she would have to manage a lot of people. Thus, she knew she should present her personal characteristics because they would help her in handling a management role. What would help Carol in creating an outline of her personal characteristics? A. Developing a career plan within the career choice B. Recognition of personal strengths and weaknesses C. Accomplishment of goals in the organization D. Developing realistic goals that can be easily achieved E. Developing long-term goals for personal growth
Business
2 answers:
Svetlanka [38]2 years ago
5 0

Answer:

the ringht answer is C.

Explanation:

the accomplishment of goals in the organization that would help her in the summary of her personal characteristics because, they are all the contributions that she has offered to the company at a professional level to contribute in the good management of her processes

DochEvi [55]2 years ago
5 0

Answer:

The correct answer is B

Recognition of personal strengths and weaknesses

Explanation:

For all Plato users

You might be interested in
Tile Depot, specializing in retail of construction materials, carries a popular flooring tile. The annual demand is estimated to
MissTica

Answer:

d.$500

Explanation:

Economic order quantity is the quantity at which business incur minimum cost. This is the level of order where the holding cost equals to the ordering cost of the business.

As per given data

Annual Demand = 5,000 cases

Ordering cost = $250

Carrying cost = $10

EOQ =  \sqrt{\frac{2 X S X D}{H} }

EOQ = \sqrt{\frac{2 X 250 X 5,000}{10} }

EOQ = 500

4 0
1 year ago
Read 2 more answers
Lancelot Manufacturing is a small textile manufacturer using machinehours as the single indirectcost rate to allocate manufactur
zhenek [66]

Answer:

$3,927

Explanation:

For the computation of bid price first we need to follow some steps which is shown below:-

Manufacturing overhead rate = Overhead cost ÷ Machine hours

= 45,000 ÷ 100,000

= $0.45

Total manufacturing cost charged to the school

= 2,000 + 400 + (900 × 0.45)

= $2,805

Markup cost = $2,805 × 0.4

= $1,122

Bid price of job = Total manufacturing cost charged to school + Markup cost

= $2,805 + $1,122

= $3,927

7 0
2 years ago
Effective teams (1) function so well they create their own magnetism, (2) are interested in others' success as well as their own
MariettaO [177]

Answer:Only statements 1 and 2 are correct

Explanation: An effective team involves people who interact with each other to accomplish certain goals or meet certain needs. Team members work intensely with each other to achieve a specific, common goal or objective. This therefore attracts other people to them, that is magnetism. In as much as they look out to achieve their goals, they are also interested in others' success.

7 0
1 year ago
Read 2 more answers
Dodie Company completed its first year of operations on December 31. All of the year's entries have been recorded except for the
noname [10]

Answer:

A. Dr Wages expense 4,000

Cr Wages payable 4,000

B. Dr Interest receivable 1,500

Cr Interest revenue 1,500

Explanation:

Preparation of Journal entries

A. Based on the information given we were told that the company employees earned wages of the amount of $4,000, which will be paid on in January of next year which means that the Journal entry will be:

Dr Wages expense 4,000

Cr Wages payable 4,000

B. Based on the information given we were told that the company had earned the amount of $1,500 as interest revenue which means that the Journal entry will be recorded as:

Dr Interest receivable 1,500

Cr Interest revenue 1,500

5 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:
  • Assume the CPI increases from 100 to 110. Explain the impact of this inflation (helped, hurt, not impacted) on each of the follo
    7·1 answer
  • In January the price of dark chocolate candy bars was $2.00, and Willy’s Chocolate Factory produced 80 pounds. In February the p
    7·1 answer
  • Piper​ Corporation, which manufactures dog​ toys, is developing direct labor standards. The basic direct labor rate is $ 12.68$1
    6·1 answer
  • Your manager asked you to finish a display by the end of your shift. Later, you start to worry you won't have time to finish it
    10·2 answers
  • On January 1, Vermont Corporation had 40,000 shares of $10 par value common stock issued and outstanding. All 40,000 shares had
    9·1 answer
  • Boney Corporation processes sugar beets that it purchases from farmers. Sugar beets are processed in batches. A batch of sugar b
    11·2 answers
  • A house sold for $165,000, and the total commission received by the broker was $13,200. What was the rate of commission?
    6·1 answer
  • Addleman Corporation has an activity-based costing system with three activity cost pools--Processing, Supervising, and Other. In
    10·1 answer
  • On April 1, 2020, Republic Company sold equipment to its wholly owned subsidiary, Barre Corporation, for $40,000. At the time of
    15·1 answer
  • When a company has an obligation or right to repurchase an asset for an amount greater than or equal to its selling price, the t
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!