week 5 project

 

Instructions

Using the Week 5 research template identify the research components, listed on the template. Select a nursing research article from the list below and address each of the following criteria:
If a component is not present in the article, its absence should be discussed.

  • Identify the research problem.
  • Identify the research purpose.
  • Summarize the review of literature.
  • Identify the nursing framework or theoretical perspective. 
  • Identify the research questions and hypotheses.
  • Identify the variables.
  • Identify and discuss the appropriateness of the design.
  • Describe the procedures for data collection
  • Discusses the validity and reliability of the instruments, tools, or surveys.
  • Describe the final sample.
  • Summarize the results including statistical analysis used or other method of analysis.
  • Discuss the significance of the study. Did it resolve the question?
  • Discuss the legal and ethical issues of the study. Include the use of human subjects and their protection.
  • Describe any cultural aspects of the study.
  • Describe how the results of the research may affect future nursing practice.
  • Apply the research to your nursing practice.
  • NOTE: If a component is not addressed, the student receives a zero for that component.

Sousa, J.P., & Santos, M. (2019). Symptom management and hospital readmission in heart failure patients. A qualitative study from Portugal. Critical Care Nurse Quarterly 42(1), 81-88.

NOTE: Once accessing the article above, you will need to click on the Full Text link in the left navigation bar.

Nurses’ Preparedness and Perceived Competence in Managing Disasters

The Lived Experiences of People with Chronic Obstructive Pulmonary Disease: A Phenomenological Study

NOTE: Once accessing the article above, you will need to click on the Full Text link in the left navigation bar.

Zaken, Z.B, Maoz, E., Raizman, E. (2018). Needs of relatives of surgical patients: Perceptions of relatives and medical staff. MEDSURG Nursing 27(2), 110-116.

Cite all sources in APA format.

Submission Details:

  • Cite any resources in APA style and include a copy of the article with the submission.
  • By the due date assigned, submit your template to the Submissions Area.

Community Assessment, Analysis, Diagnosis, Plan, and Evaluation

 

Community Assessment, Analysis, Diagnosis, Plan, and Evaluation

Weekly Objective 4 is addressed in this assignment.

Needed Document: Final Paper Template

This activity is intended for undergraduate nursing students. In this activity, you will observe, think critically about, and report health issues in diverse community environments.

Community health nursing can improve access to care for the most vulnerable and hard-to-reach groups in any country. The community health nurse should combine knowledge of major indicators of health, social factors that contribute to declining health status, and public programs designed to address problems of health care. Efforts should encompass all levels of prevention (primary, secondary, tertiary) and should address the needs of the individual, family, aggregate, and community.

You will submit a formal APA Paper (see instructions in the template and the rubric).

Utilizing the information gathered on your selected community in from eight Sentinel City subsystems you have been working on throughout this class, write your assessment, analysis, nursing diagnosis, plan, and evaluation method (per the rubric) in APA 7th edition format.

You do not need an abstract. The order of the paper is as follows: the title page, the body of the paper (5-10 pages), a reference page. See the sample template provided.

Discusion

  • Before there is any dialogue, the author goes to great lengths to describe the furnishings in the Younger’s home. Why does she do this and what does it say about the family’s life?
  • Is Walter a sympathetic character? How does he change throughout the course of the play? Have your feelings about him changed by the end?
  • What can you deduce about the character of Mr. Younger? What does his memory mean to the members of the family?
  • What does the Younger’s new house signify to Lena? To Ruth? Why is Walter so strongly against he idea of moving to the new neighborhood?
  • As a young black woman in the 1950s, what does Beneatha’s desire to become a doctor say about her character? What does it say about Lena’s character that she is completely supportive her daughter’s wishes? Why is Walter resentful of this?
  • Was Lena right to spend the money the way she wanted to? Should she have considered Walter’s wishes first?
  • Why do you think Lena changes her mind and gives Walter the responsibility of handling the money? Regardless of Walter’s subsequent actions, was this a smart decision?
  • Compare the personalities of Walter, George Murchison, and Asagai; how they different? Are they at all similar? How do they represent different archetypes of the “black man”? Would Beneatha be happy with either George or Asagai?
  • What is Karl Lindner’s goal? Do you think he believes that what he’s doing is right? How do the members of the Younger family react to his suggestions?
  • What is Beneatha’s reaction when she realizes that she will not be able to go to medical school? How does her attitude and her wishes change?
  • Is the ending a happy one? Is there any hope that the Younger family will prosper in their new neighborhood? Is it realistic to think that they will?

Need Help with SQL Server (Indexes)

  Watch video Indexes In SQL Server 

1. Run the script file “Create database 1.sql”, this will create the database Index_Examples and two tables, dbo.raw_data, dbo.index_example. & it will insert 2000 rows of data into dbo.raw_data. Next run the script Script File for Index Assignment.sql”. It will insert 4,000,000 rows into the dbo.index_example table (id, first_name, last_name, birthday). If I created a database with more it will bog down your CPU. With 4 million rows, you will see the difference in time between a non-index query and an index query. You are looking for the SQL Server Execution Time.

2. Run the following queries separately and record the time it took to complete each (see attached document “Example of Solution of Index Assignment.pdf”). You will have to set up the query window to show statistics & time. Go to the pull down menu Query, click on Query Options, under Execution, Advance check the box SET STATISTICS TIME, click OK.

  

USE [Index_Examples]

GO

select count(*) from dbo.index_example where last_name =’Waters’;

Screen Shot Goes Here!

select count(*) from dbo.index_example where first_name =’Colman’;

Screen Shot Goes Here!

select count(*) from dbo.index_example where birthday =’2000-01-01′;

Screen Shot Goes Here!

select first_name, last_name, birthday from index_example where last_name =’Waters’ order by last_name, first_name, birthday;

Screen Shot Goes Here!

select first_name, last_name, birthday from index_example where first_name =’Colman’ order by last_name, first_name, birthday;

Screen Shot Goes Here!

select first_name, last_name, birthday from index_example where birthday = ‘2000-01-01’ order by last_name, first_name, birthday;

Screen Shot Goes Here!

select first_name, last_name, birthday from index_example where last_name = ‘Waters’ and birthday = ‘2000-01-01’ order by last_name, first_name, birthday;

Screen Shot Goes Here!

3. Create 3 indexes for this database, and record the time it took to create each.

a) Create an index for the Last_Name column

Index Goes Here!

Screen Shot Goes Here!

b) Create an index for the First_Name column

Index Goes Here!

Screen Shot Goes Here!

c) Create an index for the birthday column

Index Goes Here!

Screen Shot Goes Here!

d) Create an index for the Last_Name and birthday column

Index Goes Here!

Screen Shot Goes Here!

4. Run the seven queries from step 1, separately and record the time it took to complete each (see attached document “Example of Solution of Index Assignment.pdf”).

USE [Index_Examples]

GO

select count(*) from dbo.index_example where last_name =’Waters’;

Screen Shot Goes Here!

select count(*) from dbo.index_example where first_name =’Colman’;

Screen Shot Goes Here!

select count(*) from dbo.index_example where birthday =’2000-01-01′;

Screen Shot Goes Here!

select first_name, last_name, birthday from index_example where last_name =’Waters’ order by last_name, first_name, birthday;

Screen Shot Goes Here!

select first_name, last_name, birthday from index_example where first_name =’Colman’ order by last_name, first_name, birthday;

Screen Shot Goes Here!

select first_name, last_name, birthday from index_example where birthday = ‘2000-01-01’ order by last_name, first_name, birthday;

Screen Shot Goes Here!

select first_name, last_name, birthday from index_example where last_name = ‘Waters’ and birthday = ‘2000-01-01’ order by last_name, first_name, birthday;

Screen Shot Goes Here!

5. In DETAIL what conclusion did you come to about indexes?

Discussion #2

 

End-of-Life Care (including advanced directives, palliation) Topics to review: Article: Nurses roles and responsibilities Providing care and support at end of life. https://www.nursingworld.org/~4af078/globalassets/docs/ana/ethics /endoflife-positionstatement.pdf

For your initial post/ threat choose 1 focal point from each subcategory of practice, education, research and administration and describe how the APRN can provide effective care in end of life management

Using the American nurses association position statement, recommendations for improvement in end of life management focuses on practice, education, research and administration. Listed below are steps that nurses can take to overcome barriers in healthcare practice.

Practice

1. Strive to attain a standard of primary palliative care so that all health care providers have basic knowledge of palliative nursing to improve the care of patients and families.

2. All nurses will have basic skills in recognizing and managing symptoms, including pain, dyspnea, nausea, constipation, and others.

3. Nurses will be comfortable having discussions about death, and will collaborate with the care teams to ensure that patients and families have current and accurate information about the possibility or probability of a patient’s impending death.

4. Encourage patient and family participation in health care decision-making, including the use of advance directives in which both patient preferences and surrogates are identified.

Education

1. Those who practice in secondary or tertiary palliative care will have specialist education and certification.

2. Institutions and schools of nursing will integrate precepts of primary palliative care into curricula.

3. Basic and specialist End-of-Life Nursing Education Consortium (ELNEC) resources will be available.

4. Advocate for additional education in academic programs and work settings related to palliative care, including symptom management, supported decision-making, and end-of-life care, focusing on patients and families.

Research

1. Increase the integration of evidence-based care across the dimensions of end-of-life care.

2. Develop best practices for quality care across the dimensions of end-of-life care, including the physical, psychological, spiritual, and interpersonal.

3. Support the use of evidence-based and ethical care, and support decision-making for care at the end of life.

4. Develop best practices to measure the quality and effectiveness of the counseling and interdisciplinary care patients and families receive regarding end-of-life decision-making and treatments.

5. Support research that examines the relationship of patient and family satisfaction and their utilization of health care resources in end-of-life care choices.

Administration

1. Promote work environments in which the standards for excellent care extend through the patient’s death and into post-death care for families.

2. Encourage facilities and institutions to support the clinical competence and professional development that will help nurses provide excellent, dignified, and compassionate end-of-life care.

3. Work toward a standard of palliative care available to patients and families from the time of diagnosis of a serious illness or an injury.

4. Support the development and integration of palliative care services for all in- and outpatients and their families.

Collaboration

 

Students collaborate with each other on the production process and decide the approach for each original play script. The “director” and each collaborator for each play will post a 250-word essay detailing their production concept and artistic approach. All collaborators must work together to create a unified “whole” for the production of each script. The creative team must work together to stage their “fantasy” version of their fellow’s original script.

Besides a director, a  team could consist of:

Set Designer

Costume Designer

Light Designer

Sound Designer

Properties Designer

Technical Director

Each essay should discuss what the collaborative process was like and describe what creative choices you would bring to the production.

Discussion Board Topic: The goal of theatre is transformation. Discuss how this process can occur.

Discussion for Exercise 13: Collaboration

Requirements 

 

Rubric Exercise 13 (1)

Rubric Exercise 13 (1)

Criteria Ratings Pts

This criterion is linked to a Learning OutcomeCollaboration on staging.Students collaborate with each other on the production process and decide the approach for each original play script and work together to create a unified “whole” for the production. The student describes their individual artistic contribution to staging the play through their particular job and posts a minimum length, 250-word essay to the Discussion Board for the exercise. BE SURE TO DISCUSS WHAT THE COLLABORATIVE PROCESS WAS LIKE FOR YOU!

IMOPRTANT —- 7 pts Exceeds expectations.
The student thoughtfully evaluates the responsibilities of the artist/artisan on the production team and constructs a plan of action within their particular production discipline to mount the scene on stage. Appropriate grammar and composition are observed. BE SURE TO DISCUSS WHAT THE COLLABORATIVE PROCESS WAS LIKE FOR YOU! —— IMOPRTANT 

6 ptsMeets or exceeds expectations
The student thoughtfully evaluates the responsibilities of the artist/artisan on the production team and constructs a plan of action within their particular production discipline to mount the scene on stage. There are minor issues with grammar and composition.

5 ptsMeets expectations
The student displays an understanding of the discipline’s responsibilities and has a plan of action but lacks detail or creative problem-solving. There may be some issues with grammar and composition.

4 ptsDoes not meet expectations
The student does not understand the requirements of the specific discipline. There are issues with grammar and composition.

3 ptsNo Marks
The student’s essay is too short and does not adequately describe the discipline or forward a practical solution to the challenge of production. There are issues with grammar and composition.

7 pts

Total Points: 7

3

1.Business Plan Part 2

Overview

Throughout this course, you will complete several assignments that will contribute to the development of a business plan for an organization. Putting together a business plan for an organization will not only help you solidify what you know about business, it will also help you protect what you create or innovate. The business plan is a written description of your business’s future, a plan that tells what you plan to do and how you plan to do it. For this module, you will be developing your marketing strategy for your product/service, including describing your target market and identifying your best pricing strategies.

Instructions

Approach this section of the b-plan requirement by building upon the same business idea you began developing in Modules 1 and 2.

  1. Download and use AssignmentTemplate_BusinessPlanPart2.docx to complete the assignment.
  2. Follow the instructions inside the template file.
  3. Retain the template headings and subheadings.
  4. Delete all template instructions and help hints.

2.Article Analysis – Communication 

Overview

Communication is an important part of quality customer service. There are a number of considerations that must be taken to ensure that every interaction with a customer is as positive as possible. To be effective, both employees and customers have to be able to resolve issues of conflict. Finding examples of this being done can help you in developing ways to improve your own customer service system.

This article analysis requires you to find examples of how problems are solved and negotiated in business and then apply this information to your own personal world.

Instructions

Part I:

Locate an online article which provides an example of an organization recognizing the importance of good communication because they are developing, implementing or changing ways that they communicate with customers. Briefly summarize the article, relating information from your reading assignment to how the organization is prioritizing the communication with the customer.

Part II:

The second part of the paper is your opinion and thoughts about what you learned in Part I. Include the following:

  1. Describe how the company is building their customer intelligence by what they are doing.
  2. Identify which of the five methods of communication are being addressed by the company.
  3. Incorporate your own experiences relating them to the information from the textbook that helps to support your thoughts and opinion.
  4. Evaluate what they are doing. Based on your own experiences and the readings, is what they are doing going to be effective? Why or why not?

Note: If you do not include your opinion, the paper WILL NOT be graded.

The paper should be 1-2 pages in length, double spaced with a font size not larger than 12 point, New Times Roman. Correct APA formatting is required, including proper references and in-text citations.

3.Customer Service Plan – Customer Service & Quality

Overview

The work you do throughout the modules culminates into a Customer Service Plan. This plan incorporates the following:

Module 2: Company Description & Evaluation
Module 3: Examine Customer Service & Quality
Module 4: Examine Customer Service Practices in the Twenty-First Century
Module 5: Company Analysis

Instructions

Part I:

Customer Perspective

In relation to what you have learned in Module 3 so far, observe and describe the following as you would view it from the customer’s perspective. Hint: What is each communicating to the customer?

  1. Physical appearance of the business
  2. How quickly is a customer greeted
  3. Pace of the transaction
  4. Parking lot
  5. Hours of operation
  6. Courtesy of customer service representative
  7. Knowledge of customer service representative
  8. Website – if there is a website, how user-friendly is it?

Part II: Quality Recognition

Discuss the following:

  1. Identify criteria that your organization deems important in communications.
  2. How do you know this criteria is important?
  3. How are representatives evaluated on this?
  4. What training is provided to employees in the five main methods of communication (Listening, writing, talking, reading, nonverbal expression)?
  5. What are the expectations when using technology to communicate with customers?

Part III: Proactive Practices

Evaluate the practices in place to avoid challenging situations. What are the practices in place in your business to demonstrate:

  1. Respecting the customer’s time
  2. Keeping a positive attitude
  3. Recognizing regular customers
  4. Maintaining professional communication
  5. Showing initiative

For each of the above, list the expectation(s) and provide an example of when it was done.

The paper should be 1-2 pages in length, double spaced with a font size not larger than 12 point, New Times Roman.

Correct APA formatting is required, including proper references and in-text citations.

Videoconferencing

1- ( The first step in your proposal for a secure videoconferencing system is to develop a set of functional requirements for videoconferencing that you believe the media company will need based on its geographic dispersion and business needs. In developing those requirements, research three videoconferencing solutions such as Skype, GotoMeeting, Polycom, and Cisco Webex and explain their capabilities, advantages, and disadvantages. Identify costs as well as implementation and support requirements. The functional requirements and the three possible solutions will be a section of your Proposal for Secure Videoconferencing. In the next step, you will review the challenges of implementing those solutions.)

2 ( 

In the previous step, you outlined the requirements for secure videoconferencing for the company and outlined three potential solutions. Part of your final proposal should also include the advantages and disadvantages of the implementation options for the three systems you selected. This section of the proposal also must include the changes the media company will need to make to implement the systems.

Additionally, explain how system administration or privileged identity managementwill operate with these systems. You will also need to examine how data exfiltrationwill occur with each of the new systems.

The changes to the systems and challenges for the implementation of these potential solutions will be an important section of your Proposal for Secure Videoconferencing. In the next step, you will take a closer look at the track records of each of the potential videoconferencing vendors.)

3- ( 

You’ve finished outlining the pros and cons of three videoconferencing systems. Now, it’s time to take a close look at how they serve their clients. This will take some research. Look at the systems’ known vulnerabilities and exploits. Examine and explain the past history of each vendor with normal notification timelines, release of patches, or work-arounds (solutions within the system without using a patch). Your goal is to know the timeliness of response with each company in helping customers stay secure.

This step will be a section of your Proposal for Secure Videoconferencing.

In the next step, you will outline best practices for secure videoconferencing that will be part of your overall proposal to management.)

4-( 

The last few steps have been devoted to analyzing potential videoconferencing solutions. But obtaining a trusted vendor is just part of the security efforts. Another important step is to ensure that users and system administrators conduct the company’s videoconferencing in a secure manner. In this step, outline security best practices for videoconferencing that you would like users and systems administrators to follow. Discuss how these best practices will improve security and minimize risks of data exfiltration as well as snooping.

This “best practices” section will be part of the overall Proposal for Secure Videoconferencing.)

5- I want (   Executive summary: This is a one-page summary at the beginning of your Proposal for Secure Videoconferencing.)

6- ( Proposal for Secure Videoconferencing: Your report should be a minimum six-page double-spaced Word document with citations in APA format. The page count does not include figures, diagrams, tables or citations.)

ddb last

1.  Most criminal justice agencies have some version of an internal affairs (IA) department. Hollywood has long portrayed IA as the enemy, investigating and looking to reprimand their own brothers and sisters in law enforcement, corrections, and the courts. Personnel who talk or report issues to IA are often characterized as rats or snitches, and there is said to be an unwritten rule known as the blue wall of silence.

Do you believe IA should be as concerned with the law enforcement officer who fails to report a known ethics violation versus the person suspected of the ethics violation? Should they (if proven to be guilty) both be reprimanded? Explain your position.

2. Marijuana was decriminalized in Canada in October 2018. Since that time, many Canadian police departments have implemented policies regarding officials using marijuana that would probably shock many Americans. For example, the Vancouver Police Department says that it will not impose any restrictions on their officers for using marijuana while off-duty. The only policy they will enforce is that all officers must be fit for duty when they report to work. It essentially holds them to the same standards as after-hours alcohol consumption

Changes are happening in the United States as well. In Atlanta, Georgia, which is a state where marijuana use is still illegal, the Atlanta Police Department will no longer ask applicants if they have smoked marijuana and consider its use as a factor in eligibility to join the force. They claim that they have lost too many qualified candidates when asking them about marijuana smoking.

Share your opinions, from both the perspective of a criminal justice administrator working in a state where marijuana use has been decriminalized and from the perspective of a private citizen, on whether criminal justice personnel (in states where it is legal) should be allowed to use marijuana while off-duty. Explain the rationale for your opinions.

Please keep them #, this are just Discussion Boards, no APA.

150 words per answers

ASAP

For this assignment, imagine that you are a healthcare administrator, and you have noticed that some of your employees have become a bit lax in how they present their personal image to the patients. There have also been recent instances of minor ethical infractions. You decide to hold a meeting with all of the employees to discuss this issue and retrain.

Develop a PowerPoint presentation consisting of 8–12 slides (not counting the title and reference slides) to share at this meeting. In the presentation, address the following topics:

  • the importance of personal image in patient care including appearance, grooming, and language;
  • the importance of maintaining personal and professional ethical standards;
  • the connection between communication, personality, and ethics and how they can work together to help employees present a professional image to patients; and
  • methods employees can use to improve their own personal images.

Be as creative as possible with this presentation. Try to grab your audience right from the start, and hold their attention throughout your presentation. You may use pictures or graphics or other forms of multimedia to illustrate your points. You are highly encouraged to utilize the Notes section of the presentation to add additional talking points to enhance the message you want to get across.

In addition to your textbook, you must use at least one peer-reviewed source and one source from a reputable, industry-specific website (e.g., government entities, nonprofit organizations). All sources used, including the textbook must be referenced; paraphrased and quoted material must have accompanying citations. All references or citations used must be in APA style.