Psychology homework help

Assignment: Research Project: Analyzing Effects of Media on Behavior

Practically from the advent of television, there has been a persistent question about its influence on viewers, particularly young people. With the introduction of video games, that question was transferred to yet another form of media. You may have your own personal views about television and video games, but for this Assignment—or at least to start—set those views aside as you assume the role of a researcher analyzing effects of media on behavior.

You will write a research paper in which you apply theories of behavior modeling to explain positive or negative impacts of television and other media viewing on behavior.

To prepare:

  • Review the Week 6 Learning Resources with information on behavior modeling. Be sure to access the Handout with suggested resources that address television and video-game viewing and their influence on behavior.
  • Choose a perspective for your research paper. You will discuss and provide evidence for the potential positive influences of behavior modeling from television and other media viewing or the potential negative influence on behavior.
  • As part of your research, consider practical recommendations to include in your paper for how to strengthen positive influences of television/media viewing or how to lessen the negative influences on behavior.
  • Be aware that you must use three resources to inform your paper—the course text and two other resources. You may choose from the resources listed in the Handout or resources that you find.
By Day 7

Submit a 2- to 3-page paper that addresses the following:

Identify your position on the influence of television and other media viewing on behavior.

Present evidence from your own research examining current media. Use at least two other resources other than the course text (see the Handout) to support your position. Be sure to reference specific concepts such as behavior modeling in your explanation.

Based on theories of behavior modeling including: social cognitive theory, reciprocal determinism, behavior modeling, and related concepts, explain ideas and recommendations to strengthen the positive influence or to lessen the negative influence of television/media viewing.

Note: Support the responses within your Assignment with evidence from the assigned Learning Resources. Provide a reference list for resources you used for this Assignment.

Submission and Grading Information

To submit your completed Assignment for review and grading, do the following:

  • Please save your Assignment using the naming convention “WK6Assgn+last name+first initial.(extension)” as the name.
  • Click the Week 6 Assignment Rubric to review the Grading Criteria for the Assignment.
  • Click the Week 6 Assignment link. You will also be able to “View Rubric” for grading criteria from this area.
  • Next, from the Attach File area, click on the Browse My Computer button. Find the document you saved as “WK6Assgn+last name+first initial.(extension)” and click Open.
  • If applicable: From the Plagiarism Tools area, click the checkbox for I agree to submit my paper(s) to the Global Reference Database.
  • Click on the Submit button to complete your submission.
Grading Criteria

To access your rubric:
Week 6 Assignment Rubric

Check Your Assignment Draft for Authenticity

To check your Assignment draft for authenticity:
Submit your Week 6 Assignment draft and review the originality report.

Submit Your Assignment by Day 7

To submit your Assignment:
Week 6 Assignment

>Management homework help

Personal Leadership Training Plan: Experience

In Units II, IV, and V, you contributed to the Personal Leadership Training Plan and focused on attributes, knowledge, and skills. In this unit, you will add experience to your plan.

Within your presentation, respond to the following points:

  • Explain the type of experiences you have had that will make you a strong leader.
  • Explain and evaluate your experience with organizational change. (This can be from your employer, club, church group, or family unit.) How did you facilitate the change, and was it successful?
  • How can you use Kotter’s 8-Step Process for organizational change during your future career?

Your completed PowerPoint presentation must be a minimum of 10 slides in length, not counting the title and reference slides. Additionally, a minimum of three peer-reviewed or academic resources must be used. Keep the text on the slides concise, and use the notes section to fully explain your ideas. All sources used must be cited and referenced according to APA style.

>English homework help

  write in 3 full pages

This response will be an analysis of the language used to present an idea (explanatory essay), argue a position (persuasive essay) or bring light to a situation (expository essay). The students should find 3-5 examples from the text that exemplifies the technique the author is using.  Following this, the student is able to write a response to the position and purpose of the essay and if the author was effective in presenting it.

Your introduction should begin or end with a full sentence or two thesis statement (your overall message for readers, or conclusion about the topic + your reasons why).

Your body paragraphs:    Write around four to five body paragraphs. Each body paragraph should start with a topic sentence, which is one of the points (example) you made in your introduction. You’ll then develop the point with explanation and reasoning as to how the example helps the author make his/her point or complete his/her message. Make sure each paragraph discusses only one main point, but there can be more than one paragraph concerning a theme.     Note: One body paragraph can contain your OPINION of the article, its author, and its message.

Conclusion:    End with a full conclusion paragraph that ties everything together and makes your conclusions and recommendations for future action clear to your audience. It should be at least 200 words.    Your introduction should begin or end with a full sentence or two thesis statement (your overall message for readers, or conclusion about the topic + your reasons why).Your body paragraphs:    Write around four to five body paragraphs. Each body paragraph should start with a topic sentence, which is one of the points (example) you made in your introduction. You’ll then develop the point with explanation and reasoning as to how the example helps the author make his/her point or complete his/her message. Make sure each paragraph discusses only one main point, but there can be more than one paragraph concerning a theme.     Note: One body paragraph can contain your OPINION of the article, its author, and its message. Conclusion:    End with a full conclusion paragraph that ties everything together and makes your conclusions and recommendations for future action clear to your audience. It should be at least 200 words.

  • attachment

    ClaudineHIVArticle877.pdf

Computer Science homework help

Assignment 5: Graphs

Family tree’s and genealogy software has become more and more prevalent in recent years. From the name you might expect that a family tree would be easily represented by a tree structure, but that is not the case! A more appropriate data structure to

represent a family tree would be a type of graph. Using the description of the family that accompanies this assignment, you must represent this family using a graph structure. The graph needs to be a weighted graph. The weights will constitute the types of

relationships, I recommend using some kind mapping between numbers and strings to represent the relationships. When adding family members to the graph, this can be done programmatically for the provided family members within the description file.

Additionally, I also want there to be an interface in which a user can create a new family member and add them to the tree. This can be a simple CLI where the user provides a name, gender, and age to create a person. Then another simple CLI where they select

which member of the family they want the original relationship to be with and what kind of relationship it should be. Finally, they can edit the family member using another CLI and selecting the family member they wish to edit, the operation they wish to

perform (edit name, edit age, edit relationship), and then add new relationship between family members which can call a function that you create in order to add the original relationship. Remember the DRY philosophy, where code can be modularized or made

into a function, it should be if you plan on using the logic again.

Finally, I want you to make data assertions within the FamilyTree class that enforce certain “rules” that exist in a typical human family. An example would be a person should not have any kind of relationship to itself (a person can not marry themselves, a person

can not be their own brother, sister, father, mother, etc.). There should be at least 3 data assertions. These should exists as part of the family tree, not as part of the graph.

As a hint, for a successful design: I would recommend using layers of abstraction. Your graph class is the backing structure to the family tree class. Your family tree should implement methods that interface with the graph class, i.e. add_family_member() should

call the constructor to create a node and then call a function within the graph class to add a node to the graph. Then using the relationships function parameter, you can add edges to the graph between the new nodes and the existing nodes. The family tree

should be what enforces what relationships can exist through the data assertions, the graph does not care about what relationships are made between family members. Your functions that the user would interface with would be greatly reduced compared to the

total number of methods within the classes themselves. The user should be able to add, remove, and modify family members and that’s about it. Therefore those should be your function calls.

Submission Goals

(120 pts.) Create a FamilyTree class that will represent a family tree for a given family.

The class should contain several types of relationships that commonly happen within a family (siblings, marriage, offspring, etc.)

(40 pts.) Programmatically add the family members to the graph as described by the accompanying family description file.

(40 pts.) Give data assertions to the FamilyTree class to enforce restrictions for basic family structure (at least 3); i.e A person can not marry themselves.

(40 pts.) Provide a simple CLI the enables users to add, remove, and edit family members.

* Note that there is a total of 240 points on the table here. The assignment is only worth 200 points. You have 40 points of optional goals.

Your

  • attachment

    bfs_graph.py
  • attachment

    dfs_graph.py
  • attachment

    graph.py
  • attachment

    WutherHeightsFamilyTree.docx
  • attachment

    Assignment5.pdf

Computer Science homework help

Prepare a short “talking points” paper in which you answer the question: What best practices should Sifers-Grayson follow when establishing a SOCC?

In your talking points, you should address how your selected best practices support the phases of the incident response process (i.e. Incident Detection, Containment, Eradication, & Recovery) and discuss the role of that a Security Operations Center will play in making sure that incidents are handled and reported in an effective and efficient manner.

Your “talking points” should be 3 to 5 paragraphs long (15 – 25 specific bullet points).

Your audience is a group of Sifers-Grayson executives who are reviewing the plans for establishing an internal SOCC. (Outsourcing the SOCC was considered and that option was rejected.)

Provide in-text citations and references for 3 or more authoritative sources. Put the reference list at the end of your article.

Then

Nofsinger Consulting has recommended that Sifers-Grayson invest in an Enterprise Architecture tool to help it document the assets, processes, and network infrastructure that comprise its information enterprise. Based upon past experience with such recommendations, the Nofsinger team knows that it must be prepared for debate amongst the client’s managers and executives as to the relative merits of such tools.

To help your team prepare for the expected debate, you have been asked to write a 3 to 5 paragraph response to the question “Why does Sifers-Grayson need an Enterprise Architecture tool?”

You should focus on the benefits of having a tool that can help guide the creation of an enterprise architecture.

Provide in-text citations and references for 3 or more authoritative sources. Put the reference list at the end of your posting.

Then

You are approaching the end of your time supporting Sifers-Grayson. Your team leader has asked you to prepare a 2 page research and analysis brief (“briefing paper”) for the company’s executives in which you identify the five most important technologies which the company should adopt in order to improve its security posture.

Provide specific details as to why each technology is required (what is the vulnerability or weakness that the technology will address). Then, make a recommendation for how the company should implement that technology. You must provide specific, actionable information. Your recommendations must also be based upon recognized best practices. Include the following steps in your research and analysis as you select and evaluate technologies, products, and services that will help improve the company’s security posture:

·

o Identify Candidate Technologies

o Research Products and Services which implement the technologies

o Identify Vendors

o Evaluate Products & Services (use existing market research)

Cite the sources of information used in your research and analysis (document where you obtained your information from). Use a professional citation format and provide a reference list at the end of your briefing paper.

  • attachment

    1IncidentResponseReportv2020-14.docx

Human Resource Management homework help

Labor Unions and Collective Bargaining 

Learning Objectives

  1. Explore the role of labor unions.
  2. Describe the basic union structure and organized      labor’s strategies for a stronger movement.
  3. Discuss laws affecting collective bargaining.
  4. Summarize the formation of bargaining units and the collective bargaining process.
  5. Describe the grievance procedure in a union environment.
  6. Explain union decertification.

Internal Employee Relations.

Learning Objectives

  1. Explain the concept of employment at will.
  2. Describe the concept of discipline and summarize disciplinary action.
  3. Discuss employment termination of various occupational groups.
  4. Explain the use of ombudspersons and alternative dispute resolution.
  5. Describe transfers, promotions, resignations, and retirements as factors involved in internal employee relations.
  6. Discuss three major factors that contribute to an employee’s decision to join a union. Discuss the five reasons that have contributed to the trend of decline in unionization.
  7. How would a manager use the progressive disciplinary action approach? How would the use of this approach prevent employees from being surprised if they are terminated?

Expectation:

–  Minimum of 450+ words and in APA format (including Times New Roman with font size 12 and double spaced)

–  Identify the most important concept(s), method(s), term(s), and/or any other thing that you felt was worthy of your understanding.

–  essay form (narrative form) no Bullet points should not to be used

–  2 outside scholarly or professional source related to human resource management.

–  Textbook : Title: Human Resource Management  , ISBN: 9780134739724 Authors: Martocchio Publisher: Pearson Edition: 15TH 19

Economics homework help

Using the same company and annual reports that you chose for your Week 1 – Discussion Forum, Reading and Using the Annual Report Case Study,

Calculate the current ratio and quick ratio for the latest two years, obtain the industry average ratios from IBISWorld, and analyze the results.
The IBISWorld database is accessible through the Ashford University Library. This database contains industry reports and market research on more than 1,300 United States industries. The reports provide key data, financial ratios, and benchmarks, plus industry forecasts. IBISWorld’s Data Wizard tool allows comparisons between a chosen company and industry best practices. If needed, review the Industry Wizard – Industry Product (Links to an external site.) tutorial on how to use this database.
Discuss what each of these ratios tells you about the company’s current financial condition, and how they compare to the industry averages.
Identify the major causes of any changes in these ratios and discuss your assessment of the company based on these changes.
Review the balance sheet and the notes to the most recent financial statements, and identify any contingent liabilities.
Discuss whether or not you agree with how the company chose to treat each contingency on the financial statements (i.e., recorded vs. disclosed, but not recorded).
Discuss the effect on the financial statements of the company’s treatment of the contingency.
Discuss whether the contingent liabilities change your assessment of the company.

Nursing homework help

 Respond to  your  colleagues by suggesting an alternate therapeutic approach. Support your  feedback with evidence-based literature and/or your own experiences  with clients.

Main Discussion

 

The client is a 17-year-old white girl that was accompanied by her mother to the clinic. She has two older brothers in the university and they are all studying to be doctors. Her father is a doctor and her mother is a nurse in the community hospital. She self-reported that she has been feeling very anxious of late. For a duration of about 8 months, she has been very worried about school especially now that she is almost done with her high school. Her grades don’t look so good and she is worried that she might not be able to follow the family tradition of working as a doctor, something that her father wants for her. She also dreams about the same but it is the fact there is too much that is expected from her that worries her.

The client has been finding it hard to cope with the worrying and this has further affected her performance which makes the situation worse. Her father has been putting so much pressure on her and this is not helping. She has been restless and is always on edge. She is always irritable and this affects how she relates with her parents and colleagues at school. She has challenges when it comes to concentrating at school and at the end of the day, she feels more fatigued than ever. Her sleep has not been normal. She finds it hard to fall asleep and staying asleep about 2-3 nights in a week. These disturbances cannot be attributed to any other mental or psychiatric illnesses. According to the interview and the comprehensive assessment, it was concluded that this was a case of generalized anxiety disorder due to pressure from school and her performance (APA, 2013).

The approach that was selected for this client was cognitive behavioral therapy. This is one of the most effective empirical treatment for generalized anxiety disorder and it is also a proper alternative to pharmacological interventions. The mother to the client and the client agreed that it would be better to avoid drugs after they were educated about potential side effects. Cognitive behavioral therapy is also considered as a first-line intervention to generalized anxiety disorder (Hirsch et al., 2019). The other reason for using cognitive behavioral therapy with this client is because she was entertaining negative thoughts that led to uncontrolled worrying. Using CBT allows the client to be able to change how she deals with the reason for her excessive anxiety. After a few weeks of therapy and after involving her father in a few sessions, it became clear that she could start controlling her anxiety and she found the will to cope with pressure from school. She even reported that the sleep disturbance reduced significantly.

The role of her father in her education and performance may have serious impact on the expected outcomes. This is why her father was included in a few sessions. It was very clear from the initial meeting that she was not only worried about her performance but also about not being able to meet the expectations that her father has for her and her future career. Allowing them to discuss about the issue as a family encouraged the parents to also appreciate their contribution to her anxiety. They therefore agreed to give her more support instead of pressure. Generalized anxiety disorder is one of the most common mental disorders in children and adolescents. Detecting it early is important in order to ensure that the quality of life of the affected person is not significantly affected (Bhatia & Goyal, 2018). The role of parents in exacerbating the problem should also be considered, especially when it comes to school performance.

References

American Psychiatric Association. (2013). Diagnostic and statistical manual of mental disorders (DSM-5®). American Psychiatric Pub.

Bhatia, M. S., & Goyal, A. (2018). Anxiety disorders in children and adolescents: Need for early detection. Journal of postgraduate medicine64(2), 75

Hirsch, C. R., Beale, S., Grey, N., & Liness, S. (2019). Approaching Cognitive Behavior Therapy For Generalized Anxiety Disorder From A Cognitive Process Perspective. Frontiers in psychiatry10, 796

Management homework help

For this project you will be analyzing data utilizing a spreadsheet software package. The purpose of this project is to enhance and then highlight your skills at analyzing a database utilizing a spreadsheet program. This week you are supplied with one Excel Workbook that has three different databases for you to analyze (see attachments below) To get started, download this workbook and save it on your computer. These tasks require you to reorganize data, build charts and tables, and then explain what the data is telling you. If your spreadsheet skills are at all rusty, it may be beneficial to go into the Content Section and review some of the PowerPoint Presentations, videos, and GCFLearnFree materials prior to getting started.

Start by downloading and saving the databases from the hyperlink below to your computer. Database 1 will be used for Jobs 1 through 4, Database 2 for Jobs 5 and 6, and Database 3 for Job 7. There are complete instructions inside the Workbook you will download, however, here is a short description of each Job you will be completing over the next two weeks:

  • Job 1: Reorganize data by month, analyze, and report on your findings. The first worksheet tab is labeled “Database 1 & Instructions” Average Temperatures for Washington DC 1990 – 2001. Use the data in this first tab to complete Jobs 1 – 4. You will first sort the data by month and create a table and a line chart of the average temperatures by month. Complete instructions for this project are located in the Workbook under the Raw Database 1 tab. There is a Help Video video included in the Content Section (Readings and Resources) section for weeks 5 & 6 (Video 1) that explains how to sort data and use a formula to obtain averages.
  • Job 2: Analyze the same data you used in Job 1, but reorganize the data by year. In this Job, you will create a table and line chart using the annual data. Complete instructions are on the first tab marked “Database 1 & Instructions”
  • Job 3: Create a histogram of the data in Database 1. Use the same Database; there are instructions for this project on that first worksheet tab. If you have not created a histogram before, there is a short video in the Content section that can help you get started.
  • Job 4: Create a Pivot Table. Use the same database 1 to create a Pivot Table of the maximum monthly data by year. The Pivot table is an excellent way to give a visual representation of summarized data. Finally, you are asked to explain any trends you see in your table. There is a Training video included in the Content section for weeks 5 & 6 labeled Video 2
  • Jobs 5 & 6: Create Pivot Tables. For these two projects you will use data found on the worksheet tab marked “Raw Database 2 & Instructions.” Here you will create two different pivot tables that analyse first by counts and then by the average price by region.
  • Job 7: Create a Pareto Analysis. In this final project, you will use the data on the Worksheet tab marked “Database 3 & Instructions.” The database on this page contains the suppliers, products, and order size for the Month of September. You will be creating and then answering questions regarding two Pareto charts that you will create. There are instructions in the tab Marked “Database 3” For how to create a Pareto chart. There is a YouTube video included in the content section under weeks 5 & 6 to help you through creating a Pareto analysis. There are also detailed instructions for how to create a Pareto Analysis on the Database 3 page.
  • attachment

    PracticeDatabase_LineChart.xlsx
  • attachment

    DatabaseforExcelJobs1thru7.xlsx
  • attachment

    PracticeDatabase_Cereal.xlsx