Discussion

Read Chapter 23 scenario, and address the following question

“Was Socit Gnrale so focused on achieving growth on many fronts that it neglected to invest in sufficiently robust systems and internal controls?”

Instructions for Initial Posts:

 After reading the scenario, start a new discussion thread to address the discussion topic. 

Discussion Requirements:

Must:

  • Be 4 paragraphs in length
  • Be supported by the required textbook and at least two additional references

Points deducted if the submission: 

  • Does not use the required textbook as one of the two reference sources 
    • You CANNOT use Wikipedia, LinkedIn articles, blogs, paid vendors, certification websites, or similar sources in academic writing. You CAN use reputable industry articles from publications similar to ComputerWeekly, PCMag, Wall Street Journal, New York Times, or similar sources. Academic journals and popular industry articles are accessible in the universitys library databases and Google Scholar. All references should not have a publication date older than 2005.
  • Does not respond to the question(s) thoroughly meaning with at least 4 paragraphs
  • Primarily consists of bullet points
  • Uses statements such as I have gone through your post, I have gone through your discussion, adding a few more points, based on my knowledge, according to me, as per my knowledge, or similar
  • Contains contractual phrases, as an example shouldn’t” “couldn’t” or “didn’t, or similar
  • Uses vague words or phrases such as “proper,” “appropriate,” “adequate,” it is obvious, it is clear, in fact, or similar to describe a process, function, or procedure
  • As an example, “proper incident response plan,” “appropriate IT professional,” “adequate security,” or similar. These words are subjective because they have different meanings to different individuals.

Submission results in a ZERO if it:

  • Does not adhere to the University’s academic dishonesty and plagiarism policies
  • Is off-topic and does not address the discussion question(s)

  

Assignment 2: Business Expansion and Sustainability

Due Week 10 and worth 280 points

In order to complete this assignment, refer to the scenario that you chose in Assignment 1.

Note: You may create and / or make all necessary assumptions needed for the completion of these assignments.

Using the scenario from Assignment 1, write a six to seven (6-7) page paper in which you: (I am attaching Assignment 1)

   

1. Identify three (3) job requirements (e.g., needed certifications, previous work experience, external influences, etc.) that could apply to your chosen scenario. Determine two (2) ways these requirements could impact staffing at your organization. Next, suggest one (1) strategy that you could utilize to ensure that all applicants meet the identified job requirements for your organization. Justify your response.

2. Outline a long-term recruitment plan that contains at least four (4) components, is aligned with your companys recruitment strategy, but also addresses possible job skill or credential shortages. Note: Consider concepts such as succession planning and hiring retirees.

3. Describe three (3) branding strategies that you would employ to attract qualified applicants to your organization. Next, suggest three (3) communication methods that you would utilize to reach out to applicants. Predict the outcome of integrating your branding strategies and communication methods at your organization. Provide a rationale for your response.

4. Determine two (2) selection processes for recruiting new employees that could apply to your chosen scenario and then identify five (5) selection criteria that you could use when hiring new employees. Next, analyze the effect of the five (5) identified selection criteria on long-term employee retention and preservation of organizational knowledge. Justify your response.

5. Suggest two (2) assessment methods that you could employ to select new employees for your organization and then analyze the validity and reliability of each method in regards to the job your organization is offering. Next, identify four (4) job predictors that you believe can assess candidates knowledge, skills, abilities, and other skills and experiences (KSAOs). Provide support for your rationale.

6. Go to to locate at least three (3) quality resources in this assignment. Note: Wikipedia and similar websites do not qualify as quality resources.

7. Format your assignment according to the following formatting requirements:

  

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

o Include a cover page containing the title of the assignment, the students name, the professors name, the course title, and the date. The cover page is not included in the required page length.

o Include a reference page. Citations and references must follow APAthe Strayer Writing Standards format. The reference page is not included in the required page length.

o This course requires the use of Strayer Writing Standards (SWS). The format is different than other Strayer University courses. Please take a moment to review the for details.

The specific course learning outcomes associated with this assignment are:

  

Explain the role of staffing to support an organizations strategy and improve productivity.

Explain the planning considerations for staffing organizations, the use of job analysis, and the components of a staffing plan.

Develop recruitment plans using both internal and external recruitment.

Design a selection process that incorporates a variety of assessment methods and a supporting decision method for candidate selection.

Use technology and information resources to research issues in staffing organizations.

  

Over the last several decades police agencies have been working to gain the respect and the cooperation of the communities they serve.

Write a 7001,050 word essay incorporating the following:

Define community-oriented policing (COP).
Describe the pros and cons of COP.
Provide a minimum of two cited examples of COP.
Define problem-oriented policing (POP).
Describe the pros and cons of POP.
Provide a minimum of two cited examples of POP.
Identify some of the challenges that police departments may face when attempting to implement COP and POP.
Format your work consistent with APA guidelines.

Include a title and reference page.

Cite a minimum of three reliable sources within the body of your paper using in-text citations where appropriate.

Ethical Issue (~ 2 pages)
a. Ethical issue: Please describe the ethical issue that you have identified. Describe the
who, what, where, why, and when.
b. Impact to the organization: Describe the impact of the ethical issue on your organization
(if there is one). For example, what is the impact to financials (the bottom line) should
the ethical issue not be addressed? What is the impact to the organization’s bottomline
should the ethical issue be addressed?
c. Impact to the community: Describe the impact of the ethical issue on the local
community.
d. Impact to other stakeholder groups: Describe the impact of the ethical issue on other
stakeholder groups such as government, competitors, et cetera.

Posting Requirements:

Main post: 300-400 words; 3 journal articles; 3-4 citations
One Citation per paragraph

Question:
We are shifting gears this week in order to examine what it is like to live inside the organization. Some of the relevant concepts include:

Organizational Culture
Organizational Climate
Organizational Power & Politics
The Organizations Life Cycle
Select and research 2 of these concepts. Provide a short review of each concept with your main post. In your replies to classmates offer 1 new source to each of your classmates based on his/her selections and discuss that articles value.

I have a project that I need to be implemented in C. It requires an implementation of a given priority queue specification and then using that to implement 4 algorithms: BFS, Bellman-Ford, Dijkstra’s and A*.

Project files have been given and it just requires the interfaces in pq.h and sp_algorithms.h to be implemented and ap.c to have its functionality completed. There are additional tests that need to pass to check the code works well (Provided).

FULL Description:

Intended Learning Outcomes (ILOs)
Upon successful completion of this lab, you will be able to

explain the various shortest path algorithms and their advantages/disadvantages

use existing data structures in your algorithms

combine existing data structures to get new functionality

write C code for the above concepts

use a test-driven development approach for algorithms and data structures

Assignment
Summary: Implement the interfaces specified in pq.h, sp_algorithms.h , and the functionality described in ap.c.

General Notes
Unless otherwise specified, its fine to over-estimate required array sizes to avoid dynamic re-allocation. For example, the queue required for BFS can be implemented as array with a size of num_nodes. This is the worst-case space required, but in most cases, significantly less nodes will be required, such that a dynamically growing queue would be more efficient (but also more complicated to implement1)

Try to program in a modular way. Do not duplicate functionality, but move it to own functions. Also, do not artificially inline unrelated functionality (for example, priority queue operations should not go inline into Dijkstras algorithm!). This only makes the algorithms complicated to read, and does not even bring efficiency advantages, as modern compilers are very good at automatically inlining themselves.

The assignment comes with a test-generator , which will test your data-structures and algorithms on randomly generated input data. Use this to test each module in isolation, before you build modules depending on it! Its much simpler to debug Dijkstras algorithms if you know that your priority queue is correct!

Also, feel free to modify the tests, e.g., to generate additional output useful for debugging your problem, or to pin down a particular bug. You can use the msg and assertmsg macros, that accept printf format strings.

Have a look at for the tests that we will run on your submission!

Min-Heaps
The elements of the heap will be nodes (node_t = unsigned integer). The priorities are given by an array D from nodes to weights (see weights.h for the available operations on weights)..

You have already seen a heap data structure, implemented by a tree encoded into an array. In this assignment, you will extend this idea to support an efficient operation to decrease the priority of a node that is already on the heap, as well as an efficient check whether a node is on the heap. For this, you maintain an additional mapping from nodes to heap-indexes. After decreasing a nodes priority, you use its heap-index to start a sift-up operation.

The file specifies the interface, including the required complexities for most operations. The file provides some suggestions how to implement the operations. You are free to follow them, or do your own implementation from scratch.

Shortest Paths Algorithms
The file specifies basic graph operations. The file provides an interface how to return results for single-source shortest path algorithms. You have to implement:

BFS, that ignores the weights and returns paths with minimal number of edges.

Bellman-Ford. First, dont care about negative weight cycles. Once you have got the algorithm correct for this case, you can try to correctly handle negative weight cycles: If, after |V|1 steps, you can still relax edges, set their target nodes distance to . Continue (for at most |V|1 more steps) until all nodes reachable via negative weight cycles have distance . However, do not update the predecessor map in this second phase!

Dijkstra. This will need a working priority queue implementation.

A*. We strongly recommend to implement this after Dijkstra! You can assume a monotone heuristics, such that it will be very similar to Dijkstra.

The Airport Example
In this example you will work on a graph generated from the openflight database, that encodes connections between airports on the world.

Your task is to implement a (DFS) based algorithm to count the number of airports that can be reached from a given start airport, and to compute shortest routes between two given airports. Use your graph algorithms!

See for the interface, and for a description what to implement. Exactly stick to the output format described there!

Essay 2000 words plus 10-15 references (Vancouver reference style is preferred)
– The project should be presented in the form of a scientific report that is to be considered for publication in a scientific journal, i.e. make use of subheadings, tables, figures, etc. Figures and tables should have legends. Figure and table legends, abstracts, and references do not count towards the word limit. 

Reflect on your experience in the course.

Synthesize the following:

Finding Your True North: A Personal Guide
Complexity Leadership: Enabling People and Organizations for Adaptability
Your newly-emerged insights on authentic leadership and teaming
Use Template provided in the writing tools I posted in “Course introduction and Materials”.

Write a 900- to 1200-word article that addresses the following:

Who am I as a leader?
What is my leadership purpose?
How can I remain authentic?
What insights from the course will you use immediately, and what strategies will you have to work on?
make sure you connect it to reputable references.
This is still an academic paper, so APA and academic tone are critical (See writing helps and expectations)
Make sure you access and read the rubric.

Make sure you read the writing rubric along with the writing tools I posted in “Course introduction and Materials”. Your grade will be based on this rubric.

Cite at least two reputable references to support your article (e.g., trade or industry publications, government or agency websites, scholarly works, or other sources of similar quality).

Create a 10-minute, 7- to 9-slide voice-over presentation using either Microsoft PowerPoint or websites such as Google Slides, Adobe Slate, or Prezi. The presentation will cover the volunteer opportunity you completed for this course. Consider the following as you create your presentation:

At which organization did you volunteer?
What did volunteering entail?
Did you meet with any leader of the organization?
Explain how the volunteering ties to your leadership purpose.
Include references as this is still an academic exercise.
Make sure you use writing tools I posted in “Course introduction and Materials”. Your grade will be based on these expectations.

If you elected to interview:

Create a 10-minute, 7- to 9-slide voice-over presentation using either Microsoft PowerPoint or websites such as Google Slides, Adobe Slate, or Prezi. This interview will cover the interview you conducted with a leader of a volunteer organization. Consider the following as you create your presentation:

Who did you interview?
What organization do they work for?
What questions did you ask?
Did they know about the concepts of finding your true north, complexity leadership, and leadership purpose? If not, what do they think about it?
What did you learn in your interview?
What can you use immediately, and what strategies will you have to work on?
Include references as this is still an academic exercise.
Make sure you use writing tools I posted in “Course introduction and Materials”. Your grade will be based on these expectations.

Note: Protect your interviewees privacy, and only mention their name and position if you have permission to do so.

Submit your assignment. For additional help, check out the ULTRA: Access your assignments page.

Use this space to build your submission.
You can add text, images, and files.
Add Content
Details & Information

It is common for cites to charge for certain services such as water and sewer service.  Some cities are charging for roads , public pools and even parks.  Many cities also attempt to collect for emergency medical services.  These user fees may or may not be related to the actual cost of delivering the service.

Evaluate the advantages of using fees to increase revenue rather than raising taxes.  What are the disadvantages/advantages?  Are fees a more stable source of income than taxes? Should there be fees for police and fire services as there are for emergency medical services? Defend your response.

Please use APA format.