Who knows how to be a Perfect Manager

Assignment 4: The Perfect Manager

 

Write a one to two (1–2) page paper in which you describe the characteristics of the perfect manager to see a company through all stages of organizational growth.

 

 

The format of the paper is to be as follows:

o   Typed, double-spaced, New Times Roman font (size 12), one-inch margins on all sides. APA format.

o   In addition to the one to two (1–2) pages required, a title page is to be included. The title page is to contain the title of the assignment, your name, the instructor’s name, the course title, and the date.

 

Note: You will be graded on the quality of your answers, the logic/organization of the report, your language skills, and your writing skills.

Criteria

0

Unacceptable

40

Developing

60

Competent

80

Exemplary

1. Describe the characteristics of the perfect manager to see a company through all stages of organizational growth.

Did not complete the assignment or did not describe the characteristics of the perfect manager to see a company through all stages of organizational growth; omitted key information and/or included irrelevant information. Completed with less than 60% accuracy, thoroughness, and logic.

Partially described the characteristics of the perfect manager to see a company through all stages of organizational growth; omitted some key information. Completed with 60-79% accuracy, thoroughness, and logic.

Sufficiently described the characteristics of the perfect manager to see a company through all stages of organizational growth. Completed with 80-89% accuracy, thoroughness, and logic.

Fully described the characteristics of the perfect manager to see a company through all stages of organizational growth. Completed with 90-100% accuracy, thoroughness, and logic.

Criteria

0

Unacceptable

10

Developing

15

Competent

20

Exemplary

2. Clarity.

 

Did not complete the assignment, or explanations are unclear and not organized.

(Major issues)

Explanations generally unclear and not well organized.

(Many issues)

Explanations generally clear and/or organized. (Minor issues)

Explanations very clear and well organized.

(Added helpful details)

3. Writing – Grammar, sentence structure, paragraph structure, spelling, punctuation, APA usage.

Did not complete the assignment or had 8 or more different errors in grammar, sentence structure, paragraph structure, spelling, punctuation, or APA usage. (Major issues)

Had 6–7 different errors in grammar, sentence structure, paragraph structure, spelling, punctuation, or APA usage. (Many issues)

Had 4–5 different errors in grammar, sentence structure, paragraph structure, spelling, punctuation, or APA usage. (Minor issues)

Had 0–3 different errors in grammar, sentence structure, paragraph structure, spelling, punctuation, or APA usage.

 

 

Looking for a Similar Assignment? Order now and Get a Discount! Use Coupon Code “Newclient”

The post Who knows how to be a Perfect Manager appeared first on Proficient Writers Hub.

CASE : WALMART IN AFRICA In this assignment, you will ana…

CASE : WALMART IN AFRICA In this assignment, you will analyze a strategic management case. This practice is a great way to understand and remember many strategic management concepts. You will read how others have applied strategic management and share your analysis of these decisions in a written report. Choose a Comprehensive Case from your textbook, and complete the following: Summarize the case in no more than 3 paragraphs. Analyze and evaluate the company’s actions. What kind of specific global strategies are illustrated in this case? What did you learn from reading about the company’s initiatives and expansion strategy?

 

Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code “Newclient”

The post CASE : WALMART IN AFRICA In this assignment, you will ana… appeared first on proessaytutors.

Source link


CASE : WALMART IN AFRICA In this assignment, you will ana… was first posted on August 23, 2020 at 9:14 am.
©2020 "My Assignment Geek". Use of this feed is for personal non-commercial use only. If you are not reading this article in your feed reader, then the site is guilty of copyright infringement. Please contact me at savvyessaywriters@gmail.com

Argosy University Forensic Psychology and Risk Assessment Report

Humanities

This course has provided you with a foundational knowledge of forensic psychological assessment. Successful integration of your skills is a significant aspect of this course. Throughout this course, you have learned about the variety of forensic psychological assessments.

In this assignment, apply what you have learned in this course to analyze a report of a recently paroled offender.

Scenario:

You are working as a forensic mental health professional in a parole outpatient clinic, which has received a forensic psychological and risk assessment report on a paroled offender. You have been asked evaluate the report and present it to the Board of Parole.

Click here to download the forensic psychology and risk assessment report.

Tasks:

Evaluate the forensic psychology and risk assessment report and create an essay in a Microsoft Word document addressing the following:

  • Identify and describe the role and purpose of the report. Comment on whether the evaluation was or was not necessary. State the reasons for your opinion.
  • Apply considerations of any information or sections that you found missing in the report as well as information that you found to be not relevant, i.e., elements that should have been omitted. In other words, what could have been added to or excluded from the report?
  • Discuss the ways in which cultural sensitivity and aspects of diversity were addressed in the report, including any ways in which the report could be made more culturally sensitive and include greater considerations of elements of diversity.
  • Identify and describe at least two additional psychological assessments or measures that you would have administered to obtain additional relevant information for the report. Feel free to list more than two as appropriate. Be sure to also consider cultural implications of the tests which you select.
  • Explain how you would use the recommendations in the report to assist in the development of a treatment plan.
  • Discuss in what capacity the report may be used in alternative venues. For example, can this report be utilized by other professionals in the future? If so, in what capacity?
  • Discuss the overall quality and readability of this report, including a scholarly critique of the writing.

As you evaluate the report be sure to avoid using the word “I” in formal writing. Remember, the reader of your assignment will know it is your voice since you are the author of your paper. Also, consider the difference between the following two statements, “I think the report needed to have included . . .” and “The report needed to have included . . .” The first statement has some redundancy by the writer’s use of the word “I,” whereas the second statement displays greater confidence.

Your essay should rely upon at least seven scholarly resources from the professional literature that are cited in APA format. The literature may include the Argosy University online library resources; relevant textbooks; peer-reviewed journal articles; and websites created by professional organizations, agencies, or institutions (.edu or .gov).

CTU Online Algorithms: Pseudo code

Programming

Key Assignment First Draft

Create a portfolio that includes all previous IPs. Add to this portfolio the design of an algorithm that compares one picture with another using dynamic programming.

Your algorithms group has been tasked with creating an app that performs special operations on images. Specifically, your app will compare one black-and-white image into another black-and-white image. There are a number of methods that can be used to perform this task, but your group has agreed that using dynamic programming is a fast and elegant scheme to solve this problem.

Assignment

Design an algorithm (using pseudocode) that takes in as an input, two 2-D int arrays that are assumed to be 2 black-and-white images: initialImage x, whose dimensions are IxJ, and finalImage y, whose dimensions are IxK. The algorithm will compare x to the y, row-by-row, as defined below. Your algorithm will employ a dynamic programming scheme to compare X to Y identifying the minimal difference between each row.

Because you are working with black-and-white images only, you should assume that each image is a 2-D int array consisting of 2 possible values: 0 or 1, where 0 represents black and 1 represents white. Thus, this 2-D grid of 0 and 1 values comprise a 2-D black-and-white image. Each row of this image is then simply a 1-D int array filled with either 0s or 1s. Therefore, you must define how you will measure the difference between the strings of 0s and 1s in each row.

Remember that you will do the comparison one row in the images at a time.

First, compare X1,* to Y1,*. (Here X1,* is the first row in image X and Y1,* is the first row in image Y ). Next, compare X2 to Y2… Each one of these comparisons will require the construction of a D (distance) matrix.

In the following example, the first row of X is X1,*, and the first row of Y is Y1,* = 00110.

Use the following recurrence relation to develop your pseudocode:

After the D matrix is completed, the minimum number in the bottom row is the minimal mismatch for this row. You will assign this value to the variable minVali. This number tells how different row X1,* is from row Y1,* . You will then repeat this comparison for all rows i and aggregate the difference when complete into variable totalDifference = Si minVali.

As a result, the algorithm will compare the total difference to a threshold value called thresh. If total value is above the threshold, the images are declared different; otherwise, they are declared to be similar images. You can assume that the thresh variable is supplied as an input to your algorithm.

Part 1

Create a portfolio that includes all previous IPs.

Part 2a

Design pseudocode for the image comparison algorithm discussed above, given input Images X, Y, and thresh. The output is a declaration: The images are similar, or The images are different.

Part 2b

Discuss the optimality of the dynamic programming solution. Discuss the time complexity of this algorithm in terms of the size of the inputs X and Y.

Please submit your assignment.