What is your reaction to your estimated life expectancy?

The first part of the assignment includes an informal assessment of your personal protective and risk factors associated with aging. This type of assessment could also be useful for your future client populations. In addition, you will look at how the response to death and dying varies widely among individuals and cultural groups. This second part of the assignment provides additional awareness and insight into these beliefs and practices.

Part A

Tasks:

Click here (ATTACHED) to download and complete the life expectancy questionnaire.

Write a 2- to 3-page response paper to your self-assessment. Address the following questions:

  • What is your reaction to your estimated life expectancy?
  • What lifestyle factors positively and negatively contributed to your estimate?
  • How do your personal cultural variables contribute to your estimate?

In addition, specify any modifications you plan to make in response to your estimated life expectancy.

Part B

Tasks:

Conduct research to find cultures different from your own in terms of beliefs and practices related to death and dying.

In a 2- to 3-page paper, describe your personal cultural beliefs and practices related to death and dying. Choose a culture different from your own and describe the beliefs and practices related to death and dying in that culture. In addition, describe how these beliefs and practices differ from your own. Include two or three peer-reviewed journal articles to support your opinion.

Submission Details:

  • By Monday, February 8, 2016, prepare a 5- to 6-page analysis paper. Your response should rely upon at least three sources from professional literature. This may include the Argosy University online library resources, relevant textbooks, peer-reviewed journal articles, and websites created by professional organizations, agencies, or institutions (.edu, .org, or .gov). Write in a clear, concise, and organized manner; demonstrate ethical scholarship in accurate representation and attribution of sources (i.e., APA format); and use accurate spelling, grammar, and punctuation.

Calculate the break-even point for LaTricia Jones’ toy company under each of the two different scenarios using a spreadsheet program such as Excel.

Break-Even Analysis

When expenses and revenues are equal, this is known as the “break-even point” or BEP. To determine break-even, an examination of fixed and variable costs (expenses) in relationship to revenues is necessary. Understanding where the BEP is for a given product or service helps managers determine how to make modifications to increase profitability.

For this Assignment, review this week’s Media   Computing break-even and the Weekly Briefing, and the information given below.

LaTricia Jones is planning to make a unique toy that will keep small children entertained for hours! She believes that parents everywhere will want to buy her toy, and she needs to determine her costs and the number of toys she needs to sell before earning a profit.

After researching her costs, she has come to the following conclusions.

  • The rental of a small facility will be $2,200 per month, insurance $500 per month, and other fixed costs are estimated at $1,300 per month. In this facility, she will be able to produce 100 toys per month at a variable cost for each toy of $5.00. She plans to sell them for $30 each. 
  • The rent for a larger facility will be $5,000 per month, insurance $1,000 per month, and other fixed costs are estimated at $2,580 per month. In this facility, she will be able to produce 400 toys per month at a variable cost for each toy of $4.00. She plans to also sell them for $30 each.

The Assignment:

  • Part 1: Calculate the break-even point for LaTricia Jones’ toy company under each of the two different scenarios using a spreadsheet program such as Excel. Be sure to apply the appropriate accounting process to determine the break-even points.
  • Part 2: Recommend which option, based on the scenarios for the company, that you would select using a word processing program such as Word. Support your conclusion with both a written analysis and quantitative data.

Submit your Application (both your Excel and Word files) by Day 7.

To submit your Assignment, do the following:

  • Save Part 1 of your Assignment as a “.xls” file with the filename “WK6AssgnP1+last name+first initial.xls”. Sally Ride’s filename would be “WK6AssgnP1RideS.xls”.
  • Save Part 2 of your Assignment as a ”.doc” file with the filename “WK6AssgnP2+last name+first initial.doc”. Sally Ride’s filename would be “WK6AssgnP2RideS.doc”.
  • To upload Part 1 of your Assignment, click on Assignments on the course navigation menu, and then click the Assignment Part 1 – Week 6 link.
  • To upload Part 2 of your Assignment, click on Assignments on the course navigation menu, and then click the Assignment Part 2 Turnitin – Week 6 link.

General Guidance on Application Length:

Your Application, due by Day 7, will typically be 3–5 paragraphs in length as a general expectation/estimate for each bullet point. Refer to the rubric for the Week 6 Application for grading elements and criteria. Your Instructor will use the rubric to assess your work.

Does this societal diversity affect the quality of life for employees?

5 pages + cover page + work cited

7 pages total

 

I want A+ for grade

 

you got 3 hours work on it !!!!!

 

 

 

Create and submit for evaluation on or before February 3rd, a paper version of a double-spaced single-sided report on the topic enunciated below.  Employ 12pt text comprising at least five pages, including abstract, main theme and conclusions.  In addition, create an elegant flamboyant sixth page; the cover-page.  Append a seventh page that presents a list citing the sources that were used to develop the report.

 

 

 

The annihilation of time and space triggered by the diffusion of advanced technologies throughout the world has created a global economy.  Employees are often located at all points on the compass and engineering students are now in a position to prospect for employment worldwide upon graduation.  How does this freedom affect the manufacturing sector?

 

 

 

The topic for this homework is to analyze the dramatically different vacation policy of nations and consider the impact of this immense diversity upon the workforce.  Does this diversity enhance manufacturing productivity?  Does this societal diversity affect the quality of life for employees?  How do long hours in the office affect the health of workers?  Are employees entitled to a vacation each year?  How long should that be?  Should it be enforced by federal regulations?  If Australians enjoy six weeks of vacation each year, should US companies offer this period of recuperation too?  What’s the work-life balance?  After all, human beings are not electro-mechanical robots!

 

 

 

Potential Resource:

 

Below is an article on the low vacation policy of UDS companies.

 

http://www.cnn.com/2011/TRAVEL/05/23/vacation.in.america/index.html

 

 

Why is America the ‘no-vacation nation’? – CNN.com

www.cnn.com

(CNN)– Let’s be blunt: If you like to take lots of vacation, the United States is not the place to work. Besides a handful of national holidays, the …

 

http://www.cnbc.com/id/100765600

What is the command that you would use to compile the code and create the executable “power2”?

Add to your Perl script the ability to kill a user’s processes. The requirements for this task include the following:

  • Add this option to the menu.
  • Add the code/process into a subroutine.
  • Use an array to store the list of processes that need to be reviewed and killed.
  • Process the kill using the array.

Next, you have been asked by different users to explain how to compile a program in a UNIX environment.

Finally, take the following C program (save it as “power2.c”), and create it as a file in your UNIX environment:

/* power2.c — Print out powers of 2: 1, 2, 4, 8, .. up to 2^N */

#include <stdio.h> <stdio.h>

#define N 16

int main(void) {

int n; /* The current exponent */

int val = 1; /* The current power of 2 */

printf(“/t n /t 2^n/n”);

printf(“/t================/n”);

for (n=0; n<=N; n++) {

printf(“/t%3d /t %6d/n”, n, val);

val = 2*val;

}

return 0;

}

/* It prints out :

n 2^n

===============

0 1

1 2

2 4

3 8

4 16

5 32

6 64

7 128

8 256

9 512

10 1024

11 2048

12 4096

13 8196

14 16384

15 32768

16 65536

*/

Describe the behavior when you compile the program, with no options. What is the command that you would use to compile the code and create the executable “power2”?

Finally, compare and contrast the usage of a compiled and interpreted program.

Prepare an analysis that contrasts the two organizations, explaining how the effective strategic plan was beneficial.

Strategies Analysis

When organizations’ research and development (R&D) departments begin to strategize, they must consider numerous aspects to the process. For instance, Coulter (2013) details that functional strategies may be innovative or imitative. She identifies first-mover and cross-functional teams, and their advantages and disadvantages. Moreover, competitive strategies can be traditional or adaptive and approached as a prospector or defender. For this week’s assignment, you must make this and similar decisions to develop your own competitive and functional strategies. Please complete the following:

  • Research two companies, one that had an effective strategic plan and one that did not.
  • Prepare an analysis that contrasts the two organizations, explaining how the effective strategic plan was beneficial. (This analysis can be in any form you choose – a paper, a PowerPoint Presentation, etc.)

What percent of Conoco should we divest?

Write an 8-10 page paper (double-spaced) of written analysis, including tables of financial calculations.

It is January, 1998, the Senior Executives of DuPont are considering possible divesture of Conoco. Various executives express their opinions, and the CFO is charged with presenting his recommendation with analysis from a financial perspective. This is based on the discussion in Chapter 12: Appendix, Analysis of a Sample of Recent Divestitures, (pp. 312-327).

You are the Chief Financial Officer of DuPont. Develop your best recommendation for DuPont and its shareholders from a financial perspective. Analyze and present the actual actions that DuPont took, or change the course of history, and make another presentation, again from a financial perspective – no divestiture, partial divesture, full divesture in one step, or two-stage divestiture. Whichever decision you make, justify your recommendation with financial analysis. Focus on one recommendation and show financial analysis, advantages, and risks of the proposed recommendation. (Do not try to analyze more than one choice.)

Players

Chief Executive Officer

I’m going to propose three financial perspectives. I want you to develop a specific recommendation for one of them. First, should this divesture be made from a financial perspective? What are the benefits, disadvantages and risks? Second, if we do divest, should we divest only part of Conoco? What percent of Conoco should we divest? And third, should we divest 100% of the company? How should this divestiture be implemented? Develop a proposal and process to implement this divestiture, whereby we at DuPont maximize our shareholder value. Your recommendation may be one stage or two-stage. When you develop your specific recommendation, tell us specifically how it will work, and how it will benefit DuPont, our shareholders, and Conoco.

Chief Operating Officer

Our ownership of Conoco has been very successful, and we can do a 100% IPO of Conoco for cash and raise a significant amount to use in our core business growth internationally. This would give us the opportunity to expand our global operations in agriculture, health care, nutrition, and electronics.

Executive Vice President for R & D and Product Development

Our ownership of Conoco since the 1980’s has added great marketing and purchasing clout to DuPont’s operations. I recommend that we maintain between 51% – 60% ownership of Conoco, and support its successful growth under our continued ownership control of the company.

Given the scenario, your role and the information provided by the key players involved, it is time for you to make a decision

What is the so-called Nuremberg defense?

Due Date: Feb 17, 2016 23:59:59 Max Points: 260

Details:
Over time, a society’s perception of human rights changes. These changes have often been the result of negative events that motivated society to adapt its values in an attempt to avoid the occurrence of similar incidents. In this paper, a current ethical issue that resulted from repeated negative events will be explored in terms of how it motivated the adaptation of the APA Ethics Code.
General Requirements:
Use the following information to ensure successful completion of the assignment:
• This assignment uses a grading rubric. Instructors will be using the rubric to grade the assignment; therefore, students should review the rubric prior to beginning the assignment to become familiar with the assignment criteria and expectations for successful completion of the assignment.
• Prepare this assignment according to the APA guidelines found in the APA Style Guide, located in the Student Success Center. An abstract is required but is not included in the total word count of the paper.
• Support all statements with appropriate, contemporary research. Cite and reference at least two scholarly sources other than those in the module and assignment readings.
Directions:
Review the following:
• American Psychological Association. (2009, August 5). APA Council of Representatives directs change in its ethics code to prevent so-called Nuremberg defense. APA News and Events.
• American Psychological Association. (2010, February 24). American Psychological Association amends ethics code to address potential conflicts among professional ethics, legal authority, and organizational demands. APA News and Events.
• American Psychological Association. (2010). Standard 1: Resolving ethical issues. Ethical principles of psychologists and code of conduct: 2010 amendments.
Write a paper of 1,000-1,250 words that addresses the clarifications to the APA position regarding human rights protection. Address the following in your paper:
1. What is the so-called Nuremberg defense? How did this influence the decision to clarify the APA Ethics Code?
2. How does the new verbiage in the 2010 Ethics Code enhance the APA Council of Representatives’ resolution of 2007 and the referendum-based policy change of 2008 on the topic of human rights protection?
Compare the current (2010) version of the Ethics Code to the 2002 version. Does the current version reflect a socially improving society or a socially declining society? Why?

Rubric

A thorough statement of the influence of the Nuremberg defense on APA Ethics Code clarification is presented. Information presented is from current scholarly sources.

A thorough statement regarding the influence of 2010 verbiage on the topic of human rights is presented. Information presented is from current scholarly sources.

A thorough and insightful comparison of 2010 and 2002 versions of the APA Ethics Code is presented.

All required elements are present. Scholarly research sources are topic-related, and obtained from highly respected, professional, original sources.

Thesis and/or main claim are comprehensive. The essence of the paper is contained within the thesis. Thesis statement makes the purpose of the paper clear.

Clear and convincing argument that presents a persuasive claim in a distinctive and compelling manner. All sources are authoritative.

Writer is clearly in command of standard, written, academic English.

All format elements are correct.

In-text citations and a reference page are complete and correct. The documentation of cited sources is free of error.

No Plagiarism, Reference page

Evaluate policies and processes that promote a diverse workforce.

I need at least a 10 page paper. Apa format following with a sample paper.  Please follow rubic below and the sample paper.

Assignment 2: The Hiring Process and Managing a Diverse Workforce

Due Week 6 and worth 400 points

 

Imagine that you are the HR Director at your current organization or an organization with which you are familiar. As the HR Director, you must use different employment law requirements to create methods and policies that support the promotion of a diverse workforce. Select one (1) job opportunity that you have held or with which you are familiar within the same organization for this scenario.

(Note: You may create and / or make all necessary assumptions needed for the completion of these assignments. In your original work, you may use aspects of existing processes from either your current or a former place of employment. However, you must remove any and all identifying information that would enable someone to discern the organization[s] that you have used.)

Write a ten to twelve (10-12) page paper in which you:

  1. Develop three (3) recruitment methods for the job opportunity in question, and suggest two (2) ways that each method helps one to avoid discriminatory practices. Justify your response.
  2. Outline an application process that details the organization’s method of accepting all applications, as well as its method of validating applicants’ attainment of the required credentials (e.g., reviewing resumes, collecting transcripts, verifying certifications, etc.) for the job opportunity.
  3. Develop a five- (5) step procedure for the HR Department to use in order to maintain all applicants’ records in case a discriminatory charge occurs.
  4. Decide on three (3) background checks that the HR Department must utilize, and justify the relevance of each background check for the job opportunity.
  5. Choose three (3) employment tests (e.g., drug tests, medical examinations, HIV tests, generic tests, polygraphs, honesty tests, psychological tests, intelligence and skills tests, and physical fitness, etc.) that the HR Department should use. Justify the relevance of each selected employment test to the job requirements.
  6. Formulate a policy for making both the hiring and promotional decisions related to the job opportunity. Specify the major challenges and potential adverse impact of using subjective criteria for assessing soft skills. Next, suggest one (1) plan to mitigate the adverse impact. Justify your suggestion.
  7. Recommend two (2) types of reasonable accommodations for both disabled applicants and applicants needing special religious considerations. Argue two (2) legal reasons for not being able to sufficiently provide such reasonable accommodation for each group.
  8. Select one (1) case in which a court charged an organization with an affirmative action violation and one (1) case in which a court charged the organization with not managing harassment issues more expeditiously. Recommend an action plan geared toward preventing the issues addressed in both cases within your selected organization. Justify your recommendation.
  9. Choose three (3) work-life conflicts that the HR Director should consider within the selected organization. Then, outline a policy geared toward resolving each conflict through the use of related employment laws. Justify your response.
  10. Use at least four (4) quality academic resources in this assignment. Note: Wikipedia and other Websites do not qualify as academic resources.

Your assignment must follow these formatting requirements:

  • Be typed, double spaced, using Times New Roman font (size 12), with one-inch margins on all sides; citations and references must follow APA or school-specific format. Check with your professor for any additional instructions.
  • Include a cover page containing the title of the assignment, the student’s name, the professor’s name, the course title, and the date. The cover page and the reference page are not included in the required assignment page length.

The specific course learning outcomes associated with this assignment are:

  • Determine employment laws that apply to the selection, development, and management of employees.
  • Evaluate policies and processes that promote a diverse workforce.
  • Use technology and information resources to research issues in employment law.
  • Write clearly and concisely about employment law using proper writing mechanic.

Grading for this assignment will be based on answer quality, logic / organization of the paper, and language and writing skills, using the following rubric found here.

 

 

Points: 400

Assignment 2: The Hiring Process and Managing a Diverse Workforce

Criteria

Unacceptable

Below 70% F

Fair

70-79% C

Proficient

80-89% B

Exemplary

90-100% A

  1. Develop three (3) recruitment methods for the job opportunity in question, and suggest two (2) ways that each method helps one to avoid discriminatory practices. Justify your response.

Weight: 10%

Did not submit or incompletely developed three (3) recruitment methods for the job opportunity in question, and did not submit or incompletely suggested two (2) ways that each method helps one to avoid discriminatory practices. Did not submit or incompletely justified your response.

Partially developed three (3) recruitment methods for the job opportunity in question, and partially suggested two (2) ways that each method helps one to avoid discriminatory practices. Partially justified your response.

Satisfactorily developed three (3) recruitment methods for the job opportunity in question, and satisfactorily suggested two (2) ways that each method helps one to avoid discriminatory practices. Satisfactorily justified your response.

Thoroughly developed three (3) recruitment methods for the job opportunity in question, and thoroughly suggested two (2) ways that each method helps one to avoid discriminatory practices. Thoroughly justified your response.

  1. Outline an application process that details the organization’s method of accepting all applications, as well as its method of validating applicants’ attainment of the required credentials (e.g., reviewing resumes, collecting transcripts, verifying certifications, etc.) for the job opportunity.

Weight: 10%

Did not submit or incompletely outlined an application process that details the organization’s method of accepting all applications, as well as its method of validating applicants’ attainment of the required credentials (e.g., reviewing resumes, collecting transcripts, verifying certifications, etc.) for the job opportunity.

Partially outlined an application process that details the organization’s method of accepting all applications, as well as its method of validating applicants’ attainment of the required credentials (e.g., reviewing resumes, collecting transcripts, verifying certifications, etc.) for the job opportunity.

Satisfactorily outlined an application process that details the organization’s method of accepting all applications, as well as its method of validating applicants’ attainment of the required credentials (e.g., reviewing resumes, collecting transcripts, verifying certifications, etc.) for the job opportunity.

Thoroughly outlined an application process that details the organization’s method of accepting all applications, as well as its method of validating applicants’ attainment of the required credentials (e.g., reviewing resumes, collecting transcripts, verifying certifications, etc.) for the job opportunity.

  1. Develop a five- (5) step procedure for the HR Department to use in order to maintain all applicants’ records in case a discriminatory charge occurs.

Weight: 10%

Did not submit or incompletely developed a five- (5) step procedure for the HR Department to use in order to maintain all applicants’ records in case a discriminatory charge occurs.

Partially developed a five- (5) step procedure for the HR Department to use in order to maintain all applicants’ records in case a discriminatory charge occurs.

Satisfactorily developed a five- (5) step procedure for the HR Department to use in order to maintain all applicants’ records in case a discriminatory charge occurs.

Thoroughly developed a five- (5) step procedure for the HR Department to use in order to maintain all applicants’ records in case a discriminatory charge occurs.

  1. Decide on three (3) background checks that the HR Department must utilize, and justify the relevance of each background check for the job opportunity.

Weight: 5%

Did not submit or incompletely decided on three (3) background checks that the HR Department must utilize, and did not submit or incompletely justified the relevance of each background check for the job opportunity.

Partially decided on three (3) background checks that the HR Department must utilize, and partially justified the relevance of each background check for the job opportunity.

Satisfactorily decided on three (3) background checks that the HR Department must utilize, and satisfactorily justified the relevance of each background check for the job opportunity.

Thoroughly decided on three (3) background checks that the HR Department must utilize, and thoroughly justified the relevance of each background check for the job opportunity.

  1. Choose three (3) employment tests (e.g., drug tests, medical examinations, HIV tests, generic tests, polygraphs, honesty tests, psychological tests, intelligence and skills tests, and physical fitness, etc.) that the HR Department should use. Justify the relevance of each selected employment test to the job requirements.

Weight: 5%

Did not submit or incompletely chose three (3) employment tests (e.g., drug tests, medical examinations, HIV tests, generic tests, polygraphs, honesty tests, psychological tests, intelligence and skills tests, and physical fitness, etc.) that the HR Department should use. Did not submit or incompletely justified the relevance of each selected employment test to the job requirements.

Partially chose three (3) employment tests (e.g., drug tests, medical examinations, HIV tests, generic tests, polygraphs, honesty tests, psychological tests, intelligence and skills tests, and physical fitness, etc.) that the HR Department should use. Partially justified the relevance of each selected employment test to the job requirements.

Satisfactorily chose three (3) employment tests (e.g., drug tests, medical examinations, HIV tests, generic tests, polygraphs, honesty tests, psychological tests, intelligence and skills tests, and physical fitness, etc.) that the HR Department should use. Satisfactorily justified the relevance of each selected employment test to the job requirements.

Thoroughly chose three (3) employment tests (e.g., drug tests, medical examinations, HIV tests, generic tests, polygraphs, honesty tests, psychological tests, intelligence and skills tests, and physical fitness, etc.) that the HR Department should use. Thoroughly justified the relevance of each selected employment test to the job requirements.

  1. Formulate a policy for making both the hiring and promotional decisions related to the job opportunity. Specify the major challenges and potential adverse impact of using subjective criteria for assessing soft skills. Next, suggest one (1) plan to mitigate the adverse impact. Justify your suggestion.

Weight: 10%

Did not submit or incompletely formulated a policy for making both the hiring and promotional decisions related to the job opportunity. Did not submit or incompletely specified the major challenges and potential adverse impact of using subjective criteria for assessing soft skills. Did not submit or incompletely suggested one (1) plan to mitigate the adverse impact. Did not submit or incompletely justified your suggestion.

Partially formulated a policy for making both the hiring and promotional decisions related to the job opportunity. Partially specified the major challenges and potential adverse impact of using subjective criteria for assessing soft skills. Partially suggested one (1) plan to mitigate the adverse impact. Partially justified your suggestion.

Satisfactorily formulated a policy for making both the hiring and promotional decisions related to the job opportunity. Satisfactorily specified the major challenges and potential adverse impact of using subjective criteria for assessing soft skills. Satisfactorily suggested one (1) plan to mitigate the adverse impact. Satisfactorily justified your suggestion.

Thoroughly formulated a policy for making both the hiring and promotional decisions related to the job opportunity. Thoroughly specified the major challenges and potential adverse impact of using subjective criteria for assessing soft skills. Thoroughly suggested one (1) plan to mitigate the adverse impact. Thoroughly justified your suggestion.

  1. Recommend two (2) types of reasonable accommodations for both disabled applicants and applicants needing special religious considerations. Argue two (2) legal reasons for not being able to sufficiently provide such reasonable accommodation for each group.

Weight: 5%

Did not submit or incompletely recommended two (2) types of reasonable accommodations for both disabled applicants and applicants needing special religious considerations. Did not submit or incompletely argued two (2) legal reasons for not being able to sufficiently provide such reasonable accommodation for each group.

Partially recommended two (2) types of reasonable accommodations for both disabled applicants and applicants needing special religious considerations. Partially argued two (2) legal reasons for not being able to sufficiently provide such reasonable accommodation for each group.

Satisfactorily recommended two (2) types of reasonable accommodations for both disabled applicants and applicants needing special religious considerations. Satisfactorily argued two (2) legal reasons for not being able to sufficiently provide such reasonable accommodation for each group.

Thoroughly recommended two (2) types of reasonable accommodations for both disabled applicants and applicants needing special religious considerations. Thoroughly argued two (2) legal reasons for not being able to sufficiently provide such reasonable accommodation for each group.

  1. Select one (1) case in which a court charged an organization with an affirmative action violation and one (1) case in which a court charged the organization with not managing harassment issues more expeditiously. Recommend an action plan geared toward preventing the issues addressed in both cases within your selected organization. Justify your recommendation.

Weight: 10%

Did not submit or incompletely selected one (1) case in which a court charged an organization with an affirmative action violation and one (1) case in which a court charged the organization with not managing harassment issues more expeditiously. Did not submit or incompletely recommended an action plan geared toward preventing the issues addressed in both cases within your selected organization. Did not submit or incompletely justified your recommendation.

Partially selected one (1) case in which a court charged an organization with an affirmative action violation and one (1) case in which a court charged the organization with not managing harassment issues more expeditiously. Partially recommended an action plan geared toward preventing the issues addressed in both cases within your selected organization. Partially justified your recommendation.

Satisfactorily selected one (1) case in which a court charged an organization with an affirmative action violation and one (1) case in which a court charged the organization with not managing harassment issues more expeditiously. Satisfactorily recommended an action plan geared toward preventing the issues addressed in both cases within your selected organization. Satisfactorily justified your recommendation.

Thoroughly selected one (1) case in which a court charged an organization with an affirmative action violation and one (1) case in which a court charged the organization with not managing harassment issues more expeditiously. Thoroughly recommended an action plan geared toward preventing the issues addressed in both cases within your selected organization. Thoroughly justified your recommendation.

  1. Choose three (3) work-life conflicts that the HR Director should consider within the selected organization. Then, outline a policy geared toward resolving each conflict through the use of related employment laws. Justify your response.

Weight: 10%

Did not submit or incompletely chose three (3) work-life conflicts that the HR Director should consider within the selected organization. Did not submit or incompletely outlined a policy geared toward resolving each conflict through the use of related employment laws. Did not submit or incompletely justified your response.

Partially chose three (3) work-life conflicts that the HR Director should consider within the selected organization. Partially outlined a policy geared toward resolving each conflict through the use of related employment laws. Partially justified your response.

Satisfactorily chose three (3) work-life conflicts that the HR Director should consider within the selected organization. Satisfactorily outlined a policy geared toward resolving each conflict through the use of related employment laws. Satisfactorily justified your response.

Thoroughly chose three (3) work-life conflicts that the HR Director should consider within the selected organization. Thoroughly outlined a policy geared toward resolving each conflict through the use of related employment laws. Thoroughly justified your response.

  1. 4 references

Weight: 5%

No references provided.

Does not meet the required number of references; some or all references poor quality choices.

Meets number of required references; all references high quality choices.

Exceeds number of required references; all references high quality choices.

11. Writing Mechanics, Grammar, and Formatting

Weight: 5%

Serious and persistent errors in grammar, spelling, punctuation, or formatting.

Partially free of errors in grammar, spelling, punctuation, or formatting.

Mostly free of errors in grammar, spelling, punctuation, or formatting.

Error free or almost error free grammar, spelling, punctuation, or formatting.

12. Appropriate use of APA in-text citations and  reference

Weight: 5%

Lack of in-text citations and / or lack of reference section.

In-text citations and references are provided, but they are only partially formatted correctly in APA style.

Most in-text citations and references are provided, and they are generally formatted correctly in APA style.

In-text citations and references are error free or almost error free and consistently formatted correctly in APA style.

13. Information Literacy / Integration of Sources

Weight: 5%

Serious errors in the integration of sources, such as intentional or accidental plagiarism, or failure to use in-text citations.

Sources are partially integrated using effective techniques of quoting, paraphrasing, and summarizing.

Â

Sources are mostly integrated using effective techniques of quoting, paraphrasing, and summarizing.

Sources are consistently integrated using effective techniques of quoting, paraphrasing, and summarizing.

14. Clarity and Coherence of Writing

Weight: 5%

Information is confusing to the reader and fails to include reasons and evidence that logically support ideas.

Information is partially clear with minimal reasons and evidence that logically support ideas.

Information is mostly clear and generally supported with reasons and evidence that logically support ideas.

Â

Information is provided in a clear, coherent, and consistent manner with reasons and evidence that logically support ideas.

 

 

 

“Take the Pepsi Challenge: Talent Development at PepsiCo”

 

Sample Number 2

 

Dr. David Fountaine, SPHR

 

Talent Management – HRM532 07016

 

Discuss how PepsiCo uses its talent to sustain a competitive advantage in the marketplace. (notice each assignment question is copied verbatim from the assignment instructions and typed in bold text)rrepeat this process for each assignment question. Use business style of writing and directly answer each question in a succinct manner. Ensure you include research in your answers.

 

    

 

     PepsiCo sustains a competitive advantage in the marketplace by acquiring the right talent, properly managing, developing, and educating that talent, and stressing the importance of the company culture. PepsiCo uses the business strategy “Performance with a Purpose,” which incorporates talent sustainability as one of its main components (Dowell & Silzer, 2010). “Talent sustainability is about having the right people, in the right place, at the right time, doing the right work, in the right way” (Dowell & Silzer, p. 618, 2010). Talent management and development are central to their growth agenda. Evidence that PepsiCo successfully utilizes their talent to their advantage is the fact that many former PepsiCo leaders are now in leadership positions in other Fortune 500 companies, including seven CEO positions.

 

PepsiCo believes that three major sustainable advantages give them a competitive edge in the global marketplace; (1) muscular brands; (2) innovative products; and (3) powerful go-to-market systems (“Sustainable advantage”, 2004). This particular model all revolves around the center component which is people. The first sentence of PepsiCo’s corporate values statement says it best, “Our commitment to deliver sustained growth, thorough empowered people, acting with responsibility and trust” (Dowell & Silzer, p. 617, 2010).

 

Having clear, distinct processes and structures in place to sustain employee growth and development is vital with over 185,000 employees worldwide (Dowell & Silzer, 2010). PepsiCo has worked diligently to provide that structure and embedded it in the culture of the company.

 

 

 

Discuss three key elements of PepsiCo’s career growth model.

 

 

 

The Career Growth Model (CGM), developed in 2002, describes the approach to building a career at PepsiCo. The CGM consists of five main components: (1) proven results; (2) leadership capability; (3) functional excellence; (4) knowing the business cold; and (5) critical experiences (Dowell & Silzer, 2010). The CGM offers a guide to employees describing specifically what leaders and human resources consider when looking to promote, and how employees can plan for their own development both individually and with their supervisors (Dowell & Silzer, 2010). The CGM supports PepsiCo’s core belief that all employees should have the opportunity to grow and develop within the organization (Dowell & Silzer, 2010).

 

Proven results, both business results and people results, is the first component of the CGM, and the component that will get an employee on the track to success with PepsiCo (Dowell & Silzer, 2010). Individual results are measured by the performance management process and reinforce the cultural importance of growth (Dowell & Silzer, 2010). As the business grows so do the opportunities for its employees.

 

Leadership capability, as defined in PepsiCo’s CGM, is simply the competencies and behaviors (tiered by level) that employees at each level are expected to exhibit and are then measured via their 360-degree feedback process (Dowell & Silzer, 2010). This particular element is important in any company, but even more crucial in a huge corporation. By being specific in the expectations from midlevel leaders up through senior management, PepsiCo is giving every employee the structure, guidance and feedback to succeed.

 

The last component of the CGM is critical experiences. PepsiCo believes that providing their employees with the right set of experiences is the best way to develop talent (Dowell & Silzer, 2010). PepsiCo is convinced that to be effective in a leadership role, the individual must have experience in all three project areas (beverages, snacks and foods), and understand the operations of the go-to-market systems, which are franchise, warehouse, and direct store distribution (Dowell & Silzer, 2010).

 

PepsiCo acknowledges that talent management is ever-changing and developing. The one goal PepsiCo has for their employees that doesn’t change is long-term career growth. The CGM, which has proven to be quite successful, provides structure to the talent recruitment and development process.

 

 

 

Discuss three key elements of PepsiCo’s talent management model.

 

 

 

     The talent management model was established at PepsiCo to define and communicate how they believe people are developed (Dowell & Silzer, 2010). This model incorporates three phases: identify, develop readiness, and movement (Dowell & Silzer, 2010). Identify isthe process PepsiCo uses to recognize if an individual has the potential to take on senior leadership roles. This process is one of the biggest challenges in talent management, and PepsiCo accomplishes this through their people planning process, where talent is reviewed at each successive level in the company (Dowell & Silzer, 2010).

 

Develop readiness is based on the understanding that 70% of development occurs on the job, 20% from coaching, feedback and mentoring, and 10% from training (Dowell & Silzer). PepsiCo’s method is an integrated approach, combining leadership development programs combined with formal training for senior leaders with a feedback process from a collection of personality tests (Dowell & Silzer, 2010). Following the program, the participants are given follow-up coaching assignments with outside, certified coaches (Dowell & Silzer, 2010). The collection of all three talent development methods: (1) leadership development, (2) formal training (with feedback) and follow-up coaching assignments, and (3) the collection of personality tests has proven successful for PepsiCo when fast-tracking high potential leaders.

 

Movement is the element of the talent management model that plans for movement of talent within PepsiCo, and is arguably the most challenging aspect of the talent management model (Dowell & Silzer, 2010). The goal of this element is to build a strong talent base by movement of high-potential talent (Dowell & Silzer, 2010). Identifying potential is easier than moving the talent into leadership positions in a structured and purposeful manner. The objective of this element of PepsiCo’s talent management model is that over time, and through successive movement of high-potential talent, the process builds a talent bench for the future (Dowell & Silzer, 2010).

 

 

 

 

 

 

 

Discuss the challenges that PepsiCo faces related to its talent management system.

 

 

 

According to Dowell & Silzer (2010), the four main challenges/questions that PepsiCo faces with respect to its talent management system are: (1) defining high-potential; (2) which metrics to use in the talent management system; (3) plan execution by leaders; and (4) the required changes needed to accommodate the needs of the incoming generations.

 

According to Dowell & Silzer (2010), defining high-potential employees from average employees is crucial, and doing it with a high degree of precision represents the “holy grail” of talent management. There is no set ideal of what potential looks like, making this area such a challenge. In addition, the criteria for potential may change as senior leadership changes.

 

The next challenge/question addressed by Dowell & Silzer (2010) is which set of metrics to use in a talent management system. Some companies, including PepsiCo, emphasize the importance of the depth of the talent bench, but leave the issue of which metric to use unanswered (Dowell & Silzer, 2010). It makes sense to emphasize the depth of the talent bench—which means more than one potential successor for each leadership role—so that each leader has two or more choices for a successor. Dowell & Silzer (2010) identify another metric that is commonly used in organizations, which is the number of developmental moves made during a time period, whether it is in the same or different areas. This metric has been used in PepsiCo, but Dowell & Silzer (2010) stress the importance of the moves being in the interest of improved capability and stronger bench over time, versus just random movement of the employees. This leads to a very important realization – it is critical to understand the background and capabilities of each individual being moved within to ensure a developmental experience that will maximize the talent of the employee and will build the long-term bench for PepsiCo (Dowell & Silzer, 2010).

 

Yet another metric is meant to drive enterprise-wide accountability by tasking leaders to move a certain percentage of employees across divisional or location borders (Dowell & Silzer, 2010). However, this metric puts a higher emphasis on quantity versus quality. I think that movement just for the sake of movement isn’t always an approach that will maximize the employees, or PepsiCo’s long term goals.

 

The last metric that Dowell & Silzer (2010) address is a talent distribution model, which displays high-potential talent by function, division, region or country. However, this metric, appears to be limiting in its ability to assess the true ability of the employees to reach specific important positions. The approach appears helpful for developing a broad view of the available talent, however, unless all the employees are equally functional it does little to characterize their ability to reach certain critical leadership roles (Dowell & Silzer, 2010).

 

Determining which metric to use is a significant challenge for PepsiCo, or any company. Each metric is going to have a different outcome. Determining which metric best fits PepsiCo will likely be determined on a trial and error basis before it is truly refined.

 

The next challenge that Dowell & Silzer (2010) discuss is getting senior management to execute on plans when the time is right. “All the best talent management tools, templates, assessment models, and career plans in the world are only as effective as the people executing them” (Dowell & Silzer, p. 633, 2010). At this point, a partnership between senior leadership and a Human Resource officer can be invaluable in navigating though the talent management process.

 

The last challenge discussed by Dowell & Silzer (2010) is how to change the talent management system to meet the needs of the next generation. The workforce is aging and younger generations are starting to move into more senior roles in the organization. These generations bring with them different expectations and values, thus the need for change. Dowell & Silzer (2010) identify some possible operational changes that PepsiCo may need to address in the coming years.

 

First, they will need to provide transparency in career paths, performance expectations and the sharing of talent calls with employees. While some organizations believe in telling employees where they stand, others do not for fear of the consequences. Younger generations, the Millennials in particular, are far less accepting of not knowing where they stand, and may demand feedback.

 

Second, flexibility in work arrangements and how work gets accomplished may need to be adjusted in the future. Issues, including mobility (unwillingness to relocate), life stages (how personal issues interact with career progression), and job-hopping (excess job movement) may need to be reevaluated as organizations move forward. PepsiCo and other companies have been able to disregard these ideals in the past, but the change in the workforce, and the expectation of the new generations will require changes to the talent management system for the continued success of PepsiCo’s business and human assets.

 

References

 

 

 

Dowell, B. & Silzer, R. (2010). Strategy-driven talent management: a leadership imperative. San Francisco; Jossey-Bass.

 

 

 

Sustainable Advantage. (2004). Retrieved April 29, 2010, from

What are the five main characteristics that are measured with demographic

dd, cutting girls down to size —> Here’s the Link:

.

http://www.aef.com/industry/news/data/hot_issues/1361

.

What are six main points from this article? . Instead of page numbers, use paragraph numbers, for the citations.

1a  min. 25 words use complete in-text citation

2b  min. 25 words use complete in-text citation

3c  min. 25 words use complete in-text citation

4d  min. 25 words use complete in-text citation

5e  min. 25 words use complete in-text citation

6f  min. 25 words use complete in-text citation

(Be sure to use citations from this article for each slide in Part I below)

.

PART II

.

Watch the following YouTube Video.  You may need to copy & paste the URL into your browser

.

Kilbourne Video 1   http://www.youtube.com/watch?v=C7143sc_HbU   (What are three main points from this video? )

.

1a

2a

3a

.

Part III

Create a Power Point Presentation showing four ads (4 slides) that support the arguments Jean Kilbourne makes in her article. Do not use ads that are mentioned in the article/videos.

.

  1. Place one ad on each slide, no text. In the assignment submission text box, identifythe 4 ads by name/brand  & provide one discussion for each ad of how each fits/relates to or supports Kilbourne’s arguments. DO NOT place the text with the slides, send the four ad discussions, in the text box for assignment submissions. Be sure to clearly identify the discussion for each slide /ad,  as well as the citations from the article within your discussions (using APA format).  Use a minimum of one Kilbourne argument or point from her article, for each ad discussion, accompanied with citation, with paragraph #. Each of the four discussions should be a minimum of 50 words. Also include the word count at the end of each discussion. Label discussions,  Ia, Ib, Ic & 1d. Please remember to not use ads/brands that are mentioned in the artcle and videos. You may use similar brands, only not the ones mentioned by Kilbourne. Also give the brand/product at the beginning of each slide.

.

1a. Brand & product?  (place the image/ad only on the slide)

Discussion (min 50 words), how does this add support one of Kilbourne’s arguments? include a complete in-text citation

.

1b. Brand & product?  (place the image/ad only on the slide)

Discussion (min 50 words), how does this add support one of Kilbourne’s arguments? include a complete in-text citation

.

1c. Brand & product?  (place the image/ad only on the slide)

Discussion (min 50 words), how does this add support one of Kilbourne’s arguments? include a complete in-text citation

.

1d. Brand & product?  (place the image/ad only on the slide)

Discussion (min 50 words), how does this add support one of Kilbourne’s arguments? include a complete in-text citation

.

  1. Send the Power Point slides ONLY as an attachment. Remember the slides should only contain the ad graphics.

.

Part IV.

Complete research on the concept of demographics. Answer the following:

.

  1. (1) Define demographics? (2) what are the five main characteristics that are measured with demographics? Be sure to cite your source, remember wikipediais not a credible source. Min.  Include the sources for your research.
  2. What are demographics?

2a.

2b.

2c.

2d.

2e.

.

  1. According to Killbourne, discuss how advertisers use demographics to create advertising messages, specifically gender. Think of Killbourne’s article and videos, relate your explanation back to her ideas. Include a minimum of twocitations within the response.  This discussion should be a minimum of 60 words. Include the word count at the end of response. 

.

.

  1.  Place your assignment in the text box submission area. Be sure to include  in-paper citations & all of your sources/references at the end, with a works cited/references section.

.

  1. Carefully Label each part of the assignment to correspond with the question numbers,as I want to be sure you receive full credit for all of your research & hard work.

.

I would also recommend working on the assignment throughout the week, rather than trying to complete it on the day it’s due. 

.

Thanks in advance for all of your research & hard work on this assignment. Let me know if you should have any questions. Thanks!