answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Where does personal responsibility end and corporate responsibility begin?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Management

Explain the importance of effective time management in personal and work environment?

Effective time management in both personal and work environments means that deadlines will be met, more activities can be completed, and people can be more organized. Using time management makes the end results better because things have been planned out better.


Which of these statements best describe the activities of the executing process group in the project life cycle?

When the Executing processes are at their peak, the planning process group is winding down The executing processes begin after the PLanning starts and finsh shortly before the end of the project


How do I write a Letter requesting an appointment with the manager?

First of all, you have to begin with a respectful greeting, ideally including the manager's name directly. Then you can write your request, still in a respectful and immaculate manner. Finally, you can end your letter with 'Best wishes' or 'Yours faithfully'. Always include your name and at least one of your contacts in the letter.


How can delegation of authority contribute to effective strategic management?

Delegation of AuthorityA manager alone cannot perform all the tasks assigned to him. In order to meet the targets, the manager should delegate authority. Delegation of Authority means division of authority and powers downwards to the subordinate. Delegation is about entrusting someone else to do parts of your job. Delegation of authority can be defined as subdivision and sub-allocation of powers to the subordinates in order to achieve effective results.Elements of DelegationAuthority - in context of a business organization, authority can be defined as the power and right of a person to use and allocate the resources efficiently, to take decisions and to give orders so as to achieve the organizational objectives. Authority must be well- defined. All people who have the authority should know what is the scope of their authority is and they shouldn't misutilize it. Authority is the right to give commands, orders and get the things done. The top level management has greatest authority. Authority always flows from top to bottom. It explains how a superior gets work done from his subordinate by clearly explaining what is expected of him and how he should go about it. Authority should be accompanied with an equal amount of responsibility. Delegating the authority to someone else doesn't imply escaping from accountability. Accountability still rest with the person having the utmost authority.Responsibility - is the duty of the person to complete the task assigned to him. A person who is given the responsibility should ensure that he accomplishes the tasks assigned to him. If the tasks for which he was held responsible are not completed, then he should not give explanations or excuses. Responsibility without adequate authority leads to discontent and dissatisfaction among the person. Responsibility flows from bottom to top. The middle level and lower level management holds more responsibility. The person held responsible for a job is answerable for it. If he performs the tasks assigned as expected, he is bound for praises. While if he doesn't accomplish tasks assigned as expected, then also he is answerable for that.Accountability - means giving explanations for any variance in the actual performance from the expectations set. Accountability can not be delegated. For example, if 'A' is given a task with sufficient authority, and 'A' delegates this task to B and asks him to ensure that task is done well, responsibility rest with 'B', but accountability still rest with 'A'. The top level management is most accountable. Being accountable means being innovative as the person will think beyond his scope of job. Accountability, in short, means being answerable for the end result. Accountability can't be escaped. It arises from responsibility.For achieving delegation, a manager has to work in a system and has to perform following steps : -Assignment of tasks and dutiesGranting of authorityCreating responsibility and accountabilityDelegation of authority is the base of superior-subordinate relationship, it involves following steps:-Assignment of Duties - The delegator first tries to define the task and duties to the subordinate. He also has to define the result expected from the subordinates. Clarity of duty as well as result expected has to be the first step in delegation.Granting of authority - Subdivision of authority takes place when a superior divides and shares his authority with the subordinate. It is for this reason, every subordinate should be given enough independence to carry the task given to him by his superiors. The managers at all levels delegate authority and power which is attached to their job positions. The subdivision of powers is very important to get effective results.Creating Responsibility and Accountability - The delegation process does not end once powers are granted to the subordinates. They at the same time have to be obligatory towards the duties assigned to them. Responsibility is said to be the factor or obligation of an individual to carry out his duties in best of his ability as per the directions of superior. Responsibility is very important. Therefore, it is that which gives effectiveness to authority. At the same time, responsibility is absolute and cannot be shifted. Accountability, on the others hand, is the obligation of the individual to carry out his duties as per the standards of performance. Therefore, it is said that authority is delegated, responsibility is created and accountability is imposed. Accountability arises out of responsibility and responsibility arises out of authority. Therefore, it becomes important that with every authority position an equal and opposite responsibility should be attached.Therefore every manager,i.e.,the delegator has to follow a system to finish up the delegation process. Equally important is the delegatee's role which means his responsibility and accountability is attached with the authority over to here.Relationship between Authority and ResponsibilityAuthority is the legal right of person or superior to command his subordinates while accountability is the obligation of individual to carry out his duties as per standards of performance Authority flows from the superiors to subordinates,in which orders and instructions are given to subordinates to complete the task. It is only through authority, a manager exercises control. In a way through exercising the control the superior is demanding accountability from subordinates. If the marketing manager directs the sales supervisor for 50 units of sale to be undertaken in a month. If the above standards are not accomplished, it is the marketing manager who will be accountable to the chief executive officer. Therefore, we can say that authority flows from top to bottom and responsibility flows from bottom to top. Accountability is a result of responsibility and responsibility is result of authority. Therefore, for every authority an equal accountability is attached.Differences between Authority and ResponsibilityAuthorityResponsibilityIt is the legal right of a person or a superior to command his subordinates.It is the obligation of subordinate to perform the work assigned to him.Authority is attached to the position of a superior in concern.Responsibility arises out of superior-subordinate relationship in which subordinate agrees to carry out duty given to him.Authority can be delegated by a superior to a subordinateResponsibility cannot be shifted and is absoluteIt flows from top to bottom.It flows from bottom to top.


What is a program that interacts with a DBMS which in turn interacts with the database?

front end

Related questions

How does money function as a means to an end in personal corporate or national relationships?

When are you people going to learn that no one is going to do your homework for you!


How do you write a personal response question?

You begin the question with a capital & end it with a ?as in "What do you want to do tonite?" - response - "Well what do you want to do?"


When did National Corporate Party end?

National Corporate Party ended in 1937.


When did Americans for Responsibility in Washington end?

Americans for Responsibility in Washington ended in 2007.


When did Alliance for Nuclear Responsibility end?

Alliance for Nuclear Responsibility ended in 1985.


Why did the depression begin and end?

Begin: Stock Market Crash End: WW2


When was The End Is Where We Begin created?

The End Is Where We Begin was created on 2009-09-14.


Anology of begin is to end as actor is to?

The Analogy to begin is to end as actor is to actress.


When did Fathers Rights-Responsibility Party end?

Fathers Rights-Responsibility Party ended in 2010.


When should pay period end and begin?

The day when a pay period will end and begin will depend on the employer. Most pay periods end on Thursday and begin on Friday.


What is sorting in C language?

Quicksort in any programming language is an algorithm for sorting data sequences. It is typically implemented as follows (example demonstrates a quicksort of an array of type int). Note that a half-open range, [begin:end), includes the one-past-the-end of the range and is the conventional means of defining a range of contiguous array values. When begin==end, the range is deemed empty. // forward declarations void qsort (int* unsigned); // this is the function you will actually invoke void qsort_rec (int*, int*); // recursive function int* partition (int*, int*); // utility functions... int* select_pivot (int*, int*); void swap (int*, int*); int count (int*, int*); // sort a data sequence of length size void qsort (int* data, unsigned size) { qsort_rec (data, data + size); } // recursively sort the half-open range [begin:end) void qsort_rec (int* begin, int* end) { if (count (begin, end) < 2) return; // end point of recursion int* pivot = partition (begin, end); qsort_rec (begin, pivot); qsort_rec (++pivot, end); } // divide the half-open range [begin:end) into two around a pivot value int* partition (int* begin, int* end) { if (count (begin, end) < 2) return begin; int* pivot = select_pivot (begin, end); swap (begin, pivot); --end; while (begin != end) { while (*(begin) <= *pivot && begin != end) ++begin; while (*pivot < *(end) && begin != end) --end; if (begin!=end) swap (begin, end); } assert (begin==end); // sanity check! swap (pivot, begin); return begin; } // select the median of three from a half-open range [begin:end) int* select_pivot (int* begin, int* end) { int* mid = begin + (count (begin, end) / 2); if (*end<*begin) swap (begin, end); if (*mid<*begin) swap (begin, mid); if (*end<*mid) swap (mid, end); return end; } // swap the values referred to by p and q void swap (int* p, int* q) { if (!p !q) return; // sanity check! int t = *p; *p = *q; *q = t; } // count the elements in the half-closed range [begin:end) int count (int* begin, int* end) { int cnt = 0; int add; if (begin>end) { // swap pointers if the range is reversed int* t = begin; begin = end; end = t; add = -1; // count will be negative } else { add = 1; // count will be positive } while (begin++!=end) cnt+=add; return cnt; }


Are boundaries important for us?

Boundaries are very important to tell you where you end and the other person begins. These can be the boundaries of cities, countries, continents, and even worlds. You have your own personal boundaries, too, that allow you to know what emotions and thoughts are yours (and thus, your responsibility) and what belong to other people (and thus, are their responsibility).