In This Assignment You Will Create A Presentation For Your Organization To Expla 3

In this assignment, you will create a presentation for your organization to explain how successful collaboration can improve success and provide competitive advantages.

Scenario: Your organization has used a variety of collaboration systems developed by some project managers. Some of these systems were successful while others were not. Your organization has one unique challenge—many of your employees are staffed at other locations or work from home (telework). You would like to standardize the collaboration process to improve team communication for all company projects. In your presentation, you should include the elements listed below.

  • Explain why collaboration information systems (IS) are important from the organization’s perspective.
  • Discuss how collaboration tools can improve team communication.
  • Identify three tools that will be used for synchronous communications and three tools that will be used for asynchronous communications. Be sure to explain why you made these choices.
  • Describe how project files, such as Microsoft (MS) Word, MS Excel, MS Project, and MS Visio, will be shared with team members. Be sure to explain the rationale behind your choice.
  • Explain how the task list for managing tasks will be shared with team members. Be sure to explain the rationale behind your choice.
  • Discuss how this new collaboration IS could provide competitive advantages for your organization.

Your presentation should be a minimum of six slides in length (not counting the title and reference slides). Use of images, graphics, and diagrams is encouraged.

You can use an industry of your choosing or examples from your personal or professional experiences in developing this assignment. You can also use the resources in the Unit II Suggested Reading section to assist you with this assignment.

Be sure to follow the 7×7 rule (i.e., there should be no more than 7 words per line and no more than 7 lines per slide). You are required to use speaker notes to discuss the bullet points on your slides.

You must use at least two academic resources to support your presentation, and you must cite (in APA format) any information on your slides or in your speaker notes that came from these sources.

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

In This Assignment You Will Create An Annotated Bibliography About Crime Prevent

In this assignment, you will create an annotated bibliography about crime prevention research and initiatives aimed at reducing juvenile delinquency and subsequent adult criminal behavior. You will continue to utilize the research developed in the annotated bibliography as you prepare for the assignments in Units 4 and 5.

What is an annotated bibliography?

This is a bibliography that includes brief explanations or notes for each reference. An annotated bibliography helps the researcher determine which sources are relevant to a line of inquiry. This determination is based on a summary of the work, an evaluation of its credibility, and its applicability to what you are specifically writing about. Each annotation should be between 100–150 words.

Visit and read examples from the recommended resources that the CTU Library provides about the annotated bibliography:

  • This site gives an explanation of what an annotated bibliography is and the process of creating one. Be sure you check the format of your own work with the assignment and your instructor.
    • How to Prepare an Annotated Bibliography: The Annotated Bibliography
  • This site gives an overview of the annotated bibliography and samples in APA and other formats. Be sure you check the format of your own work with the assignment and your instructor.
    • Annotated Bibliography Samples

Examples of topics to search:

  • Articles on juvenile delinquency and its causes 
  • Articles on theory that address juvenile delinquency 
  • Government or nonadvocate, nonprofit organization Web pages for statistics
  • Peer-reviewed articles and academic journal articles

What are peer-reviewed references?

Peer-reviewed references are those documents that have been written and subsequently reviewed by experts or scholars in a specific field. Examples in criminology and criminal justice include: Criminology, the Journal of Research in Crime and Delinquency, and Justice Quarterly. Do not use an article that is more than 5–7 years old unless it is considered foundational in the field.

Annotations Versus Abstracts

Abstracts are the purely descriptive summaries often found at the beginning of scholarly journal articles or in periodical indexes. Annotations are descriptive and critical; they expose the author’s point of view, clarity, and appropriateness of expression and authority.

Assignment Guidelines

  • First, search for books, periodicals, and information related to your topic of study. Take your time to look them over and see what the authors are describing in their work, and then make a decision on which material would have the most impact upon your paper.
  • Select a minimum of 10–15 sources that you will use for your annotated bibliography. 
  • For each selected source, complete the following:
    • Make an APA reference for the material.
    • Write a brief description that summarizes the central theme of the material.
      • Evaluate the credibility of the source, comment on the intended audience, compare or contrast this work with other sources that you have referenced, and explain how this work relates to your topic.
  • All references should be in APA style.

References

Cornell University Library. (2017). How to prepare an annotated bibliography: The annotated bibliography. Retrieved from http://guides.library.cornell.edu/annotatedbibliography

Purdue OWL. (2017). Annotated bibliography samples. Purdue online writing lab. Retrieved from https://owl.english.purdue.edu/owl/resource/614/03/

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

In This Assignment You Will Delve Deeply Into Structured Query Language Sql Stat

In this assignment, you will delve deeply into Structured Query Language (SQL) statements. You will review existing SQL statements and troubleshoot them. You would need to determine why the given statements are not functioning properly. At the conclusion of this assignment, you should be able to examine and troubleshoot basic SQL statements.

Scenario:

A good friend of yours is starting a fantasy football league and has created a small database to track the team owners, teams, players, and games. Your friend knows that you are taking a database fundamentals class and has asked you to help. Your friend is not able to figure out why the database is not getting modified in any way. Your friend has given you a copy of the following:

  • A database schema diagram. Click here to access the database schema diagram.
  • A Microsoft Access database. Click here to access the Microsoft Access database.
  • http://vizedhtmlcontent.next.ecollege.com/pub/content/77d17d99-89f1-44c8-81e6-6291c94c294a/AU_IST351_Football_Team_Details.accdb
  • The following list of what he or she is trying to do:     
    1. Add a new owner named Alice Wonderland with an owner ID of 1205 and a contact e-mail of
    2. INSERT INTO Owner VALUES (1205, ‘Wonderland’, ‘Alice’, ”) 
    3. Update player 323’s salary to $1,800,000
    4. UPDATE Player salary = 1800000 WHERE player_id = 323 
    5. Display all players whose salary is greater than $1,000,000
    6. SELECT FROM Player WHERE salary > 1000000 
    7. Delete owner Jerry Jones from the database
    8. DELETE FROM Owner last_name = “Jones” AND first_name = “Jerry” 
    9. Update game 0105 with the final score
    10. UPDATE Game SET home_score = 17,     visitors_score = 23 

Note: For this assignment, you will use Microsoft Access 2010 to open the database file provided. If you do not have Microsoft Access 2010, you may download a free trial version of Microsoft Office 2010, which includes Microsoft Access 2010, from the Microsoft website.

Tasks:

  1. Open the Microsoft Access file “Football.accdb” by double-clicking on it. You will see the small database created for the fantasy football league.
  2. Familiarize yourself with the database by opening and examining the data in each table.
  3. There are two queries included with the database that will display some of the information contained in the tables. Double-click each of these to see the results of the query.

Once you are familiar with the database, proceed to the next section.

  1. Examine and Correct the Faulty SQL Statements 
    1. For each SQL statement listed above, identify the SQL statement errors.
    2. Once you have identified the errors, rewrite the SQL statements so that they will work.

Note: Take special precautions with Statement 5 above. If you run the statement as it is written above, you will overwrite the scores of all of the existing games in the database.

  1. Execute the Statements 
    1. On the Create tab, in the Queries group, click Query Design.
    2. When prompted to add tables, click the Close button.
    3. On the Query Tools Design tab, in the Results group, click on the down arrow below the word View and select SQL View. This is where you will compose your SQL statements. Feel free to type the statements above into the SQL View window and run them (see Step 4) to view the errors. (Note: Take special precautions with Statement 5 above. If you run the statement as it is written above, you will overwrite the scores of all of the existing games in the database.)
    4. To run your SQL statements against the database, click the Runbutton in the Results group. You will be prompted to confirm that you want to modify data in your database. Click Yes. Close the query and save it as “Statement n”, where n is the statement number listed above. For example, you will save the first statement as “Statement 1”.
    5. Repeat this process for each SQL statement provided above.
    6. Once you have completed correcting the SQL statements, save and exit the database.
    7. Save your database as M4_A2_Lastname_Firstname.accdb. 
  2. Explain the SQL Statement Errors 
    1. Create a Microsoft Word document explaining what was wrong with each of the five originally written SQL statements. Include any additional comments that you might have about the statements. Save your document as M4_A2_Lastname_Firstname.doc.

Submission Details:

  • Save your deliverables as M4_A2_Lastname_Firstname.zip.
  • By Week 4, Day 7, submit both the files to the M4 Assignment 2 Dropbox.

Assignment 2 Grading CriteriaMaximum PointsCorrected the faulty SQL statements.40Explained the SQL statement errors.40Wrote in a clear, concise, and organized manner; demonstrated ethical scholarship in accurate representation and attribution of sources (i.e., APA); and displayed accurate spelling, grammar, and punctuation.20Total:100 

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

In This Assignment You Will Develop And Submit A Project Plan For A Community In

In this assignment, you will develop and submit a  project plan for a community intervention that addresses a significant  public health problem of your choice aside from those topics that have  been already addressed in other assignments in this course. Your project  plan must be based on the PRECEDE-PROCEED model and at least two  behavior change theories included in this course.

Respond according to the following:

  1. Briefly describe the selected health problem and the population. Be  sure to select a health problem that has not already been addressed in  other assignments in this course.
  2. Identify key behavioral and environmental risk factors for this health issue in this population.
  3. Describe and justify the selection of at least two theories of  health behavior that can be used to address the behavior problem (the  theories should be at different levels—i.e., individual, interpersonal,  community).
  4. Identify predisposing, reinforcing, and enabling factors for  behavior change based on the theoretical constructs from the preceding  step.
  5. Using SMART objectives, develop at least one process and one impact  and one outcome objective, and provide a brief overview of an evaluation  strategy.

Be creative, but also use scholarly support and appropriate references.

 Write a 6–8-page report in Word format. Apply APA standards to citation of sources. 

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

In This Assignment You Will Discuss The Important Activities Of Leaders And How

In this assignment, you will discuss the important activities of leaders, and how they can be used to create and maintain high-performance organizations.Throughout this course, you are expected to bring the knowledge and skills you have gained from other courses in the MBA program into the Forum discussions.1.Identify four research sources that provide context for at least three activities of strategic leaders. At least two of these must be from your own research.2.Using the resources you have identified, describe specific characteristics of leaders and activities necessary to maintain a high-performance organization.3.Post your findings to the Forum by Tuesday of this week. Include citations and references (in proper APA style) for your sources.

Assignment GradingCourse: NameActivities of LeadersYour nameProfessor’s Name [optional]University Activities of leaders to create and maintain high performance organizationEntrepreneur: To…

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

In This Assignment You Will Discuss The Similarities And Differences Between Eth

In this assignment, you will discuss the similarities and differences between ethics, morals, and laws, and discuss the advantages and disadvantages of having the lines between those principles blurred.

In a paper of 500-750 words discuss the roles ethics, morals, and laws play in people’s lives. In your paper include the following:

  1. A definition of ethics
  2. A definition of morals
  3. A definition of laws
  4. Compare the roles ethics, morals, and laws play in people’s lives.
  5. Explore the advantages and disadvantages of having the distinction between ethics, morals, and laws blurred.
 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

In This Assignment You Will Evaluate The Strengths And Weaknesses Of Your Commun

In this assignment, you will evaluate the strengths and weaknesses of your communication based on your personal perceptions and the perceptions others have of you. Personal effectiveness begins with you and also includes views others may have of you as an individual. You will go beyond your personal viewpoint and seek feedback from others in order to achieve a more accurate understanding of self.

To prepare for this discussion, research effective communication using your textbook readings and the Argosy University online library resources. Reflect on your personal effectiveness as a communicator, and then interview two to four people to find out how others perceive your communication. Be ready for a discussion based on the following questions.

  • Define what you consider to be your strengths as a communicator. Consider talking, listening, empathy, and so on.
  • Discuss what you consider to be some important areas for improvement in your communication.
  • Explain how different your personal perceptions of your strengths and weaknesses are compared to the perceptions others have of you.
  • Distinguish what changes, if any, you would like to make in your communication style.
  • How effective do you think you are when communicating with those of a different gender? Different culture?
  • Formulate a plan as to how to improve your communication abilities and effectiveness with people different than yourself.
 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

In This Assignment You Will Examine The Concept Of Creative Capitalism Bill Gate

In this assignment, you will examine the concept of creative capitalism. Bill Gates, cofounder and chairperson of Microsoft Corporation, advocates that in addition to seeking profits, corporations should also become social entrepreneurs in order to help solve social problems. He has called this creative capitalism. Gates argues the desire to help others who are less fortunate should be as powerful a motivator as increasing profits for businesses today.

Read the transcript or conduct a search for the video of Bill Gates’ speech at the 2008 World Economic Forum:

  • Gates, B. (2008). Bill Gates—2008—World Economic Forum—Creative Capitalism. Bill and Melinda Gates Foundation. Retrieved from http://www.gatesfoundation.org/speeches-commentary/Pages/bill-gates-2008-world-economic-forum-creative-capitalism.aspx

Review the following:

  • General Electric (GE). (2011 ). Citizenship. Retrieved from http://www.gecapital.com/en/our-company/citizenship.html
  • Walmart Corporate. Community and Giving. Retrieved from http://walmartstores.com/CommunityGiving/

Using your textbook, the Argosy University online library resources, and the Internet, research the concept of creative capitalism. Select at least three references for use in your assignment (one may be your textbook).

Complete the following:

  • Explain free market capitalism
  • Describe creative capitalism
  • Explain the three advantages of creative capitalism in relation to businesses
  • Explain the concept of corporate social responsibility using two examples of socially responsible companies. Clearly and concisely support your examples and explain why these companies are considered socially responsible.
  • Comment on Gates’ creative capitalism. Do you think that creative capitalism can become the future of capitalism in the U.S.? Justify your response with examples and research.

Give reasons and illustrative examples in support.

Write a 5 page paper in Word format. Apply APA standards to citation of sources. Use the following file naming convention: LastnameFirstInitial_M5_A2.doc.

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

In This Assignment You Will Explore How Interrogation Is Different From Intervie

In this assignment, you will explore how interrogation is different from interviewing.

Scenario:

You work as a psychology professional for a metropolitan police department. Your primary job is to screen police officers for employment and emotional stability. You make recommendations about their suitability for employment, conduct interviews with police officers to determine whether they should be referred for counseling, and monitor their performance by dialogues with their superiors. You are recognized for your skills as a clinician, and you are asked to participate with a team of interrogators so they may become more proficient in obtaining confessions from suspects.

Compare the relationship of a psychology professional working with a suspect as a client with the relationship of a psychology professional working as a consultant to an interrogator.

Tasks:

In a minimum of 300 words, respond to the following:

  • Part 1: Differentiate between interviewing and interrogation. What are the goals of interviewing and interrogation? In what instances would a psychology professional be involved in an interrogation?
  • Part 2: Identify a context and setting for a forensic psychology professional to be involved in an interrogation. What would be your concerns in taking on the role of or assisting that forensic psychology professional?
  • Part 3: Review the current version of the APA ethics code and the APA resolution on interrogations and identify an ethical principle that potentially conflicts with psychology professionals participating in interrogation. Discuss your choice in relation to the context and setting you identified in Part 2.

Use the current version of the APA ethics code; choose elements of the ethical principles to explore issues, such as “do not harm,” “informed consent,” “use of assessment techniques by unqualified persons,” and “resolving ethics code conflicts in an organization.” Explore the following issues in the context of the scenario above:

  • Who is a psychology professional’s client?
  • With whom does a psychology professional have a professional relationship?
  • Do psychology professionals have any professional (as opposed to “moral”) obligations to suspects?
 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

In This Assignment You Will Identify An Ethical Dilemma That You Have Experience

In this assignment, you will identify an ethical dilemma that you have experienced in the workplace. You will analyze the ethical dilemma according to the guidelines and evaluation criteria outlined below. 

Assignment Guidelines and Tips

•This assignment should be typed, minimum 11-point font, double spaced, and no more than 2 pages in length.

•Proofread your analysis.

•There is no need to conduct outside research for this assignment. But, should you cite the textbook or some other source, be extremely careful to cite the sources used and to do so accurately. If you use exact words, you must put quotation marks around the cited material to acknowledge that these are not your own words. Do not just copy, cut, and paste. Remember to include a references page (this is not included in your total page count).

Personal Ethical Dilemma Mini-Analysis Outline:

•In one or two paragraphs (total of 50 points):

Briefly identify and describe an actual ethical dilemma you have faced:

1.Use values language to describe the ethical dilemma. Identify the values in conflict and explain how they conflict. 

(25 points)

2.Explain how the values in conflict relate to your personal values. 

(25 points)

•In the next several paragraphs (150 points):

Choose one of the prescriptive ethical decision making frameworks (consequentialist, deontological, or virtue ethics), and apply it to your ethical dilemma. 

If you choose Consequentialist:

1.Identify multiple stakeholders (at least five) and the harms and benefits for each. Rather than writing out this section in paragraph form, you may “map out” your stakeholders and options using the “Consequentialist Analysis” shown on p. 41. 

(100 points)

2.Do the bottom line mental calculation and evaluate the impact on society overall. If you choose to use the matrix format for your stakeholders and options, please still dedicate one paragraph to the decision that this approach would suggest that you follow, and evaluate the impact of this decision on society overall. 

(50 points)

If you choose Deontological:

1.Explain which ones apply to your ethical dilemma: duties, rights, obligations, principles, and/or values. 

(30 points)

2.Explain what the golden rule would say you should do in this situation.

(40 points)

3.Explain what Kant’s categorical imperative would say you should do in this situation. 

(40 points)

4.Explain what Rawls’ veil of ignorance would say you should do in this situation 

(40 points)

If you choose Virtue Ethics:

1.Explain what were/should have been your motivations and intentions. 

(30 points)

2.Identify the relevant ethical community for helping you to determine what a business person of integrity should do in this situation. 

(40 points)

3.Explain what the disclosure rule would say you should do in this situation. Create a hypothetical news headline to assist you with your decision. 

(40 points)

4.Identify your ethical role model or harshest moral critic and what he or she would say you should do in this situation.

(40 points)

•In the last paragraph (50 points):

Explain what you learned from this analysis. 

1.Did using these frameworks raise new issues or considerations? What do you think now about what you did?

(25 points)

2.Would you do things differently in the future? Why or why not? 

(25 points)

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW