HCA 459 week 2 assignment

  

Ashford 3: – Week 2 – Assignment

 

Senior Project Summary
 

Write a Senior Project Summary paper on the selected topic from Week One. In your paper include the following:  Title Page  Anticipated title (this may change for the completed       project)  Your name  Course name and number  Instructor’s name  Date submitted  Introduction: Provide a description of your selected      topic (i.e., health care trend) and a thesis statement. Identify the      organization that you have chosen to address, including why the issue of      your selected topic is important to the health care administrators in your      organization, and to the health care industry in general. This should be      about one-third of a page.  Scope of the Senior Project: This section should      summarize the content topics and sub-topics related to the health care      trend that will be addressed in the Senior Project.  Discussion: This section should be a constructive and      analytical overview of what was found in the scholarly and professional      literature. Make sure to discuss the pros/cons or strengths/weaknesses of      the stakeholder group impacted (e.g., patient, provider, third-party      payer, administrator, legislator, etc.) as applicable. In developing this      section, it is important to demonstrate your understanding of the topic      and the interventions and influences. This should be about one page.  Conclusion:  Provide a summary of the main effects      of the contemporary health care trend on costs, quality, and access to      services as it impacts various stakeholder groups.  Reference Page 

 The Senior Project Summary should be two- to- three pages (excluding title and reference pages) in APA format as outlined in the Ashford Writing Center.
 

Carefully review the Grading Rubric for the criteria that will be used to evaluate your assignment.

write an outline of final paper

Assignment Instructions

Submit a one page outline with your proposed term paper title, thesis statement, and an outline of the subtopics you will cover in your paper. The term paper details are listed below.

TOPIC: IT Act of 2000

THIS IS A OUTLINE!

The FINAL paper must be 6 pages in length (not including the title page or bibliography) detailing the below questions. Before completing the below steps, please make sure that the topic is approved.

Hint: The sections below make great section headers in your paper and as a way to organize your outline!

Thesis

What law are you researching (You are to choose a specific law. Please do not choose a topic)? What position do you want to take in regard to your chosen law? You will need to decide if you agree or disagree with the current way the law is written. You can choose to like certain aspects of the law and not others.

Background

What is the existing point you want to challenge or support, and how did the law get to be that way (This is where you would need to find cases, background information, etc.)

Inadequacies

What are the deficiencies in the present way of doing things, or what are the weaknesses in the argument you are attacking?

Adequacies

Discuss the positive aspects of the law?

Proposed Changes

How will we have a better situation, mode of understanding or clarity with what you are advocating? In short, how can the law be improved (or not diminished)? (This is where you have the chance to change the law with your own ideas of how it should be written).

Conclusion

Why should and how can your proposal be adopted?

A detailed implementation plan is NOT expected, but you should provide enough specifics for practical follow-up. In making recommendations, you are expected to draw on theories, concepts and reading.

When writing the term paper you must have a minimum of at least 5 outside sources cited and referenced in the paper.

I WILL REQUEST WHOEVER ACCEPTS THIS OUTLINE TO WRITE THE FINAL PAPER AS WELL!

ECE 332 week 4 Discussion 1

  

Ashford 5: – Week 4 – Discussion 1

 

Your initial discussion thread is due on Day 3 (Thursday) and you have until Day 7 (Monday) to respond to your classmates. Your grade will reflect both the quality of your initial post and the depth of your responses. Reference the Discussion Forum Grading Rubric for guidance on how your discussion will be evaluated.

 

     

Gender   Development

 Gender roles are the combination of attitudes, behaviors, and personality characteristics that a culture considers appropriate for an individual’s anatomical sex.  Psychologists have proposed a number of theories to explain gender typing (LeFrancois, 2012).   
 

For this discussion, you will choose and analyze two of the four scenarios in the videos below, and explain how each scenario relates to the theories that explain gender typing. Boy Meets Girl

  Free to Be, You and Me – Ladies First

  Free to Be You and Me – Princess Atalantis

  Free to Be You and Me – William Wants a Doll 

 What do you think influenced the children in each video?  Next, explain how your own gender identity may have been influenced by gender stereotypes.  Finally, what are some strategies you can use in an early childhood educational setting to avoid gender stereotyping?
 

Guided Response:  Review several of your classmates’ posts.  Respond to at least two of your classmates by providing additional ways that teachers or caregivers can minimize stereotypical differences in the classroom.  Compare your classmates’ analyses of the videos to your own, and point out any differences or similarities that you find.

answering questions assignment

THERE IS ONLY 5 QUESTIONS NEEDS TO BE ANSWERED IN THIS ASSIGNMENT

I have the first part of the exercise done and will send it to you to help you understand it better.

here i will be uploading a file that has 5 questions in it please read the instructions and answer the 5 questions in there

a netbean project with sorting algorithm and heaps

requirements are in the attached file. But here they are:

Problem 1:

Sorting algorithm comparison

In this problem you are asked to:

  • Implement in Java the Quicksort algorithm for arrays of integers.
  • Implement in Java the Hybrid Quicksort algorithm for arrays of integers, a variant of Quicksort that depends on an additional parameter k. The algorithm works as follows:
  • – if the size of the portion of the array to be sorted is greater than k, it recursively calls the Hybrid Quicksort method with the same k;

    – if the size of the portion of the array to be sorted is less than or equals to k, it sorts that portion by using the Insertion Sort algorithm.

  • Empirically compare these two sorting algorithms for different values of k (k = {10,
  • 20, 50, 100,…..}) and different array sizes n (n = {20, 100, 1000, 10000). Find out for which values of k and for which array sizes Hybrid Quicksort outperforms the standard Quicksort.

    Problem 2:

    You have learnt about heaps as a data structure that allows one to retrieve the maximum in a set of numbers in constant time. Moreover, a heap can be maintained in logarithmic time if we insert a new element and it eventually finds it place in the heap. Your task will be to realize priority queues using heaps in arrays.

    Priority Queue is an extension of queue with following properties.

    1.Every item has a priority associated with it.

    2.An element with high priority is dequeued before an element with low priority.

    3.If two elements have the same priority, they are served according to their order in the queue

    .4.Here value of the element itself can be considered as its priority, greater the number,higher is the priority.

    Implement priority queues as instances of the class:

    public class PriorityQueue{

    int maxSize;

    int currentSize;

    int[] queue;

    public PriorityQueue(int maxSize){

    this.maxSize = maxSize;

    queue = new int[maxSize];

    currentSize = 0;

    }

    }

    An instance of this class can hold a heap of up to maxSize integers. Initially, the heap has size 0, which means that none of the elements of the array queue is considered to be a heap element.

    You are now asked to implement the following methods for this class:

    1.boolean empty(), which returns true iff the heap is empty;

    2. boolean full(), which returns true iff the number of integers in the heap is equal to maxSize;

    3. int extractMax(), which returns the maximum element of the heap, deletes it from the heap, and reorganizes the array so that it is a heap of the remaining elements; after this operation the currentSize of the priority queue is one less than it was before; clearly, the operation can only be applied if the priority queue is not empty, otherwise, an exception has to be raised;

    4. void insert(int n), which inserts a number n and reorganizes the array so that it is a heap of the new, larger set of elements; after this operation the currentSize of the priority queue is one greater than it was before; clearly, the operation can only be applied if the priority queue is not full, otherwise, an exception has to be raised.

    5. void printHeap(), which prints the heap. This method can be implemented as you wish as long as you mention how one should read the ordering of elements from printed Heap.

    HLP

    The purpose of this assignment is to provide students an opportunity to apply the concepts of time value of money

    Comprehensive Case Study Report Susan Smith

                              Serial Killer : Susan Smith 

     

    For the Final Paper, you will take on the role of a death penalty mitigation expert hired by the defense attorney to work as a sentencing advocate on behalf of the client/defendant susan smith.  you will create a comprehensive case study report arguing against the death penalty for your client (the perpetrator). This report will contain an analysis of the psychological factors that may have contributed to the commission of the crimes in the chosen case study and how these psychological factors should be considered a basis for a prison sentence less than the death penalty.

     

    In your paper,

    • Summarize the chosen case.
    • Evaluate the biopsychosocial factors that led the client to commit his or her crimes.
    • Evaluate how these factors may have contributed to committing violent crimes.
      • Identify whether your client suffered from a mental illness.
      • Identify the diagnosis and how the diagnostic criteria was met.
    • Evaluate the ACEs score you calculated for your client in the Week 3 Adverse Childhood Experiences discussion, to the extent that you were able to answer the questions based on what you could out about your client’s history.
      • Explain the impact of childhood trauma, abuse, and neglect may have on criminal behavior.
      • Examine whether your client had any events in life that could be considered traumatic such that this could have influenced the criminal behavior.
      • Explain what the scientific research says about the impact of trauma on criminal/violent behavior.
    • Analyze any other mitigating factors that may provide a credible argument against a death sentence for your client.

    (That is, was your client gainfully employed? Did your client lack a significant criminal history prior to the most recent offenses? Mitigating factors can be anything that humanizes your client and thus makes him/her seem like a candidate for a lesser sentence than death).

    • Evaluate the mitigating circumstances found in this report.
    • Propose a specific psychosocial intervention based on your evaluation of the client and case such as counseling, medication, restitution, and so forth. (This proposed intervention will serve as your argument that the death penalty is not appropriate for your client based on these mitigating factors.)
    • Summarize your analysis and restate your intervention in the conclusion.

     

     

    Assuming a competitive market, use demand and supply diagrams to show in each of the following cases

    Assuming a competitive market, use demand and supply diagrams to show in each of the following cases how the change in demand or supply for product A creates a disequilibrium consisting of excess demand or excess supply, and how the change in price eliminates the disequilibrium. (a) Consumer income increases (A is a normal good). (b) Consumer income falls (A is an inferior good). (c) There is an increase in labour costs. (d) The price of substitute good B falls. (e) The number of firms in the industry producing product A increases. (f) A successful advertising campaign emphasises the health benefits of product A.

    power point slide favorite religion judaism or islam

    Description:

    As you come to the close of your study of World Religions, it has hopefully become evident to you that religions will continue to have a place on the world stage and influence in the lives of many around the globe. In an ever-changing world environment that seems to get smaller every day, nations are discovering along the way that it is harder and harder to stay isolated from one another.

    In our study of World Religions, if there is one thing that that stands out above the rest, it is the notion that our world faces numerous global issues that demand attention and solutions for the betterment of all of the world. Could it be, given the historical nature of World Religions, that working together instead of in conflict with one another, that the world’s major religions could provide real-life, world-changing solutions that would pave the way for the betterment of humankind across the world? That is not to say it would be easy, but the benefits could be enormous for providing solutions to the Global Issues we face today.

    It is with that thought in mind that for your Week 7 Presentation: My Favorite World World Religion, you are being asked to develop a multi-media presentation representing what has become for you over this course, My Favorite World Religion. The purpose of this assignment is NOT for you to discuss your own religion, but for you to demonstrate effective research skills in the development of a multi-media presentation that will highlight the study of a religion you’ve come to understand this term and to give you an opportunity to dig more deeply into that religion and expand upon its place on the world’s stage of religions.

    You will need to include the following in your presentation:

    • A brief Introduction of your favorite religion and the reasons why you have selected to research it.
    • Provide a brief historical study and background information about your religion that will include:
      • The founder of the religion
      • The date of the religion
      • The geographical location and the role geography plays in the religion
      • Provide current demographical information about your religion
    • Detail and discuss the major components of this religion’s belief system.
      • The nature of a god or supreme being
      • Identify and define major rituals
      • Discuss views of the afterlife
      • Detail any worship practices and places of worship or no places
    • Detail and discuss the contemporary application of the religion in the world today
      • Highlight mission and services they provide to local communities
      • Highlight how this religion may be working with other religions to address world issues
      • What are those issues and how are they addressing them?
    • Project the future of your favorite religion
      • For the growth of it in the United States
      • For the growth of it on the world’s stage
    • Conclusion
      • Summarize your findings
      • Re-iterate why it is your favorite religion
    • Include MLA citations and a Works Cited Page to identify your resources. Use in-text citations directly on your slide to identify your resources and avoid plagiarism
    • Review the Grading Rubric in advance so that you will have a good idea of the expectations for the presentation.

    PRESENTATION FORMATS:

    • Your presentation can be in the form of any of the following formats of your choosing.
    • Your presentation should not exceed 15 slides including your Title and Works Cited pages.
    • You will want to maximize your creativity and demonstration of the use of technology and the software

    moral advertising

    one page paper that identifies the unique ethical issue, the ethical dilemma and the traditional theories that will be used to suggest potential resolution of the dilemmas.

     

     

     link with this topic that you can reference to;

    Topic

    ·         Moral Advertising

    http://www.ethicsbasedmarketing.net/8.html