Background:
The purpose of this assignment is to give you an opportunity to really reflect on what you have learned in this course. You have grown in your understanding and ability to act as a moral agent in analyzing and deciding on a course of action in an ethically challenging situation. You have also had the opportunity to practice making decisions as a team, working with individuals who bring a variety of perspectives to the table.

Instructions:

This paper has two parts. The attached document has details about the content of each part and what to address in each paragraph. Use APA style (1” margins, 12-point Times New Roman Font, double spaced throughout, page numbers on the top right of each page). This should generate a paper that is 5-8 pages in length. You will have a couple of references. Include citations in your text in APA style and a references page in APA style. (If you need help with your APA style citations and references, there is a very nice guide on the UTA Library Website under the Public Health subject guide.)
Prior to submitting your final paper, submit your draft through the Unicheck link and review your Unicheck analysis.
*Note: Part 1 requires that you communicate with a classmate about their position on an ethical case.  Be sure to allow time for this.

  • attachment

    SignatureAssignment-MyGrowthasaMoralAgentandTeamMember2020Accessible-1.docx

Assignment: Relationship Analysis

How does attraction happen and how do relationships form? Attraction and relationships are complex in that they are influenced by numerous factors, including, but not limited to, age and gender of the partners, stage of the relationship, and culture.
For this Assignment, you explore the elements of a relationship and the rules and expectations associated with them. You also examine what influences these elements and rules/expectations.
To prepare:

  • Review Chapter 10 of your course text, Social Psychology, focusing on attachments in childhood and adulthood. Also focus on the factors involved in attraction, romantic love, relationship satisfaction, and romantic breakups.
  • Review at least two of the journal articles in this week’s Learning Resources to explore aspects of attraction and romantic relationships in different cultures. (You do not have to read all of the articles.) Think about how people in a different culture might view and behave in relationships. Notice the similarities and differences between that culture and your own.

The Assignment (2–4 pages):
In a 2- to 4-page paper, analyze a personal relationship you have or have had (or a relationship of someone you know well). This relationship may be a romantic relationship or a friendship. Address the following:

  • Briefly identify the type of relationship you are using as your example and describe each person’s attachment style.
  • Select at least four concepts or theories from your readings that describe in more depth the relationship and/or how this relationship developed, was maintained, or ended.  Analyze how these four concepts or theories relate to the relationship you have chosen to assess.
  • Finally, select a culture presented in one of the articles listed and that neither person is already a part of, in real life. Consider how that cultural context could impact the relationship. Imagine that one or both of the people in the relationship are from this other culture and the relationship is in the development or maintenance stage. How would the relationship be different? Make connections to what you learned from your selected journal article by discussing some of the research findings.
  • Would your four selected concepts or theories still apply in the same way in terms of relationship development or relationship maintenance? If not, what would differ? Would another concept or theory be more applicable, and why?
By Day 7

Submit your Assignment.

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 “WK5Assgn+last name+first initial.(extension)” as the name.
  • Click the Week 5 Assignment Rubric to review the Grading Criteria for the Assignment.
  • Click the Week 5 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 “WK5Assgn+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 5 Assignment Rubric

Check Your Assignment Draft for Authenticity

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

Submit Your Assignment by Day 7

To submit your Assignment:
Week 5 Assignment

Final Project

Purpose of Assignment

This project is the culmination of all the work you have been getting together. This includes the discovery assignment, empathy map, wireframes, and prototypes. Your website does not need to be fully functional, but it should appear correctly. Basic actions like links should work correctly.

Assignment Description

Design Elements
Your web site must contain each of the following design elements

  • Minimum of 5 pages (including the homepage and the other page for which you submitted wireframes).  Any other secondary pages you want to include.
  • HTML5 document type declaration on EVERY page
  • HTML5 tags(header, footer, section, main, article, aside, nav).
  • Proper use of heading levels to organize pages.
  • Appropriate integration of color and visual interest elements (images, rules, multimedia, etc.).
  • One custom web font.
  • Use of CSS3 for page layout.
  • Responsive design.
  • Appropriate, meaningful inclusion of forms (although they may not function at this point).
  • Unique and proper usage of page titles values on every page.
  • Use of meta description tag to appropriately describe the page.
  • Use mobile breakpoints. Same breakpoints as the assignments.
  • Other best practices covered in class or in your assigned readings (naming conventions, naming of folders, separate CSS, etc.).
  • A sitemap.xml will be required for your project. Check out this tutorial (Links to an external site.)
  • You will be required to implement Google Analytics (Links to an external site.)(even if it’s nonfunctional).
  • Your homepage should be named index.html.

Coding
The code you create for your web pages must meet industry standard requirements for ‘acceptable code’; code that is easy to read is easy to update and fix. Your code should:

  • Have tags, attributes, and attribute values typed in all lowercase letters, and attribute values enclosed with double quotation marks. Consistently creating code using this format will only make your pages easier to debug, For example
    <p align=”center”>Welcome!</p> is correct
    <P ALIGN=CENTER>Welcome!</P> is incorrect
    <P Align=”center”>Welcome!</P> is incorrect
    <p align=center>Welcome!</p> is incorrect
  • Optional closing tags should be present. Browsers vary in how forgiving they are of non-closed tags. Although your browser may display list items, table cells and paragraphs without the closing </li>, </td>, and </p> tags (respectively), your viewers’ browsers might not. Also, as we learn how to format pages with styles non-closed tags can cause confusion as formatting from one section ‘leaks’ into another.
  • Make appropriate use of hard returns and indents. See my example below to recognize the visual cues this offers:
    <div><p>Hello World</p><p>This is my website</p></div>
    The above will display identically to the code below, but it should be clear which is easier to read and to check for errors
    <div id=”content’>
             <p>Hello World</p>
             <p>This is my website</p>
    </div>.

Required Elements

  1. Complete the items listed to finish this assignment.

Assignment Instructions

  • Design your own web page. Do not use a template or wizard to generate this page. Please do not submit a white background page.
  • Create your Project Brief in HTML5/CSS. HTML/CSS must not have any validation errors.  Use the HTML validator(Links to an external site.), and CSS validator (Links to an external site.) to check your code. See HTML/CSS requirements below.
  • Post your Project Brief to your web server.
  • Create a .zip file that contains both the HTML and CSS files. Title the Assignment “YourName-Final-Project.zip”. Submit your zip file to Canvas assignment.

HTML5/CSS3 requirements
A HTML file that will contain:

    • HTML 5 <doctype> tag
    • Use of <header> tag
    • Use of <article> tag. Content will reside inside <article> tag.
    • Use of <footer> tag
    • Use of appropriate usage of <h1> and <h2> tags. Use other header tags if necessary.
    • Proper label within <title></title> tag
    • Use of <meta description> and proper description

A CSS file that will contain:

    • Must use external CSS file.
    • Must style font color, at least two different font sizes
    • Use of a custom web font
    • Appropriate use of classes, IDs selectors
    • Style groups of tags
    • Style structural elements: header, footer, and article

Grading Criteria is simple. If you completed all “Required Elements” then you get highest points. If you completed some then you get mid points. If you did not complete then you will get no points.

Rubric

Final Project Rubric (1)

Final Project Rubric (1)
Criteria Ratings Pts
This criterion is linked to a Learning OutcomeDesign Elements
All of the design elements specified above are present.
Site has a minimum of 5 well-developed pages.
20.0 to >18.0 pts
Exceeds Expectations
18.0 to >16.0 pts
Meets Expectations
16.0 to >14.0 pts
Needs improvement
14.0 to >0 pts
Missing
20.0 pts
This criterion is linked to a Learning OutcomeNavigation/Site Organization
The navigation layout and style effectively guides visitors.
Ordered or unordered lists are used appropriately.
All links are active and work properly.
Site can be hosted by extracting zip file to web root folder without any manual steps.
20.0 to >18.0 pts
Exceeds Expectations
18.0 to >16.0 pts
Meets Expectations
16.0 to >14.0 pts
Needs improvement
14.0 to >0 pts
Missing
20.0 pts
This criterion is linked to a Learning OutcomePresentation
The site is aesthetically appealing.
Colors are coordinated.
Each page loads quickly.
Images and/or animation enhance, not detract, from the pages.
The site has been spell checked, and is grammatically correct.
Site builds on wireframes developed.
25.0 to >23.0 pts
Exceeds Expectations
23.0 to >20.0 pts
Meets Expectations
20.0 to >14.0 pts
Needs improvement
14.0 to >0 pts
Missing
25.0 pts
This criterion is linked to a Learning OutcomeCoding
The HTML Validates.
The CSS Validates.
All of the necessary basic tags are in place.
HTML coding has been written using lowercase letters, and quotation marks are present around all attribute values.
The code is easy to read.
Use of CSS techniques studied.
25.0 to >23.0 pts
Exceeds Expectations
23.0 to >20.0 pts
Meets Expectations
20.0 to >14.0 pts
Needs improvement
14.0 to >0 pts
Missing
25.0 pts
This criterion is linked to a Learning OutcomeFolder Organization
The site is completely organized in the appropriate folder structure.
There is an images folder, and all images are stored within that folder.
If needed, there are folders for sound, video, etc. files.
Site pages are organized and stored at the root level of the main folder and any other sub folders (as it fits your IA).
5.0 to >4.0 pts
Exceeds Expectations
4.0 to >3.0 pts
Meets Expectations
3.0 to >2.0 pts
Needs improvement
2.0 to >0 pts
Missing
5.0 pts
This criterion is linked to a Learning OutcomeFormatting and Style
Required elements listed in the Assignment Description are present as described. Adheres to UCOL Format and Style Requirements, including Turabian Author-Date citations, if applicable.
5.0 to >4.0 pts
Exceeds Expectations
4.0 to >3.0 pts
Meets Expectations
3.0 to >2.0 pts
Needs improvement
2.0 to >0 pts
Missing
5.0 pts
Total Points: 100.0

 

use Vincent van Gogh sunflower 1888
(20 points – NO less than1,000 words) – 1” marginstyped single-spaced (for digitized submission and double-spaced for printed version)standard font (Time, 12), proofreadprofessionally presented,
I.B. (5 pts.): 1) Title of the artwork, 2) Name of the Artist, 3) Year of the artwork, 4) where, and 5) whenyou found/saw it during this semester. (*put resource information such as the name of book, URL website information.)
I.C. (5 pts.): Research and describe the historical background and the artistic value of the artwork. (*Put the resource info and restate the info in your own words. If you would like to use some few words directly, don’t forget to quote it.)
I.D. (5 pts.): Describe what it looks like and what YOU think of the art based on the study (e.g. the elements of arts, the materials of art, etc.)
 
2. Should any actions by political interest groups be prohibited? What criteria (if any) should define the boundaries of acceptable political action by interest groups?
3. Identify your five most important political beliefs. For each, specify the agent of political socialization that has had the greatest impact on that belief and explain how this occurred. Analyze whether there is a pattern evident regarding the content and sources of your key political beliefs.
4. If you interview a prominent political activist (living or dead), who would you select? List six questions that you would ask about that individual’s childhood or personality in order to better understand his or her political behavior. Why are these particularly revealing questions?

Question below please answer.

 

Select a currency other than the U.S. dollar (such as the Euro, Swiss Franc, Yen, or another currency of your choosing), and research the current exchange rate between it and the U.S. dollar. If the chosen currency against the U.S. dollar depreciates, can the U.S. dollar buy more or less of the chosen currency? Please explain.

 

 

Assignment Paper A

Top of Form

Hide Assignment Information

 

Instructions

Paper A: Application of a decision making framework to an IT-related ethical issue.

This assignment is an opportunity to explore and apply a decision making framework to an IT-related ethical issue. A framework provides a methodical and systematic approach for decision makingUMGCModule 2 – Methods of Ethical Analysis (see LEO Content – Readings for week 2) describes three structured frameworks that may be used for ethical analysis, namely Reynolds Seven-Step Approach, Kidder’s Nine Steps, and Spinello’s Seven-Step ProcessThere are several ways described in UMGC Module 2 to systematically approach an ethical dilemma, and while each of the frameworks described has its merits, each will result in an ethical decision if straightforwardly, objectively,  and honestly applied.

In addition, consider the ethical theories described in Module 1 – Introduction to Theoretical Ethical Frameworks (see LEO Content – Readings for week 1) which help decision makers find the right balance concerning the acceptability of and justification for their actions. A separate write-up of the ethical theory that supports your decision is part of the following requirements.

For this paper, the following five elements must be addressed:

  • Describe a current IT-related ethical issue: Since this is a paper exercise, not a real-time situation, you may want to construct a brief scenario where this issue comes into play, and thus causes an ethical dilemma.  The dilemma may affect you, your family, your job, or your company; or it may be a matter of public policy or law that affects the general populace. See the list below for a list of suggested issues, which may be a source of ethical dilemmas.
  • Define a concise problem statement that is extracted from the above description or scenario. It is best if you define a specific problem caused by the dilemma, that needs a specific ethical decision to be made, that will solve the dilemma.   Be aware that if it is a matter of public policy or law, that it may require a regulatory body or congressional approval to take action to implement a solution.
  • Analyze your problem using one of the structured decision-making frameworks chosen from Module 2. Make sure that you identify the decision-making framework utilized. In addition, the steps in the decision-making framework selected must be used as major headings in the Analysis section. 
  • Consider and state the impact of the decision that you made on an individual, an organization, stakeholders, customers suppliers, and the environment, as applicable!
  • State and discuss the applicable ethical theoryfrom Module 1 that supports your decision.

Concerning your paper:

  • Prepare a minimum 3- 5 page, double-spaced paper and submit it to the LEO Assignments Module as an attached Microsoft Word file.
  • Use headings for each topic criteria
  • Provide appropriate American Psychological Association (APA) source citations for all sources you use.  In addition to critical thinking and analysis skills, your paper should reflect appropriate grammar and spelling, good organization, and proper business-writing style.
  • Include a Cover Page with your Name, the UMGC/Name of the Class, and the Title of the Paper.

For example, Kidder’s approach has nine steps, which are:

  • Recognize that there is a moral issue.
  • Determine the actor (whose moral issue is it?).
  • Gather the relevant facts.
  • Test for right-versus-wrong issues.
  • Test for right-versus-right paradigms (what sort of dilemma is this?).
  • Apply the resolution principles (ends-based, rule-based, or care-based).
  • Investigate the “trilemma” options (look for common ground or compromise).
  • Make the decision.
  • Revisit and reflect on the decision. (Kidder, 1995, p. 183-187)

Reminder: Each of the steps for whatever framework that you select must be a major heading in the Analysis section of your paper.

Here are some suggested issues for you to consider, the additional text is designed to help you flesh out the issue:

  1. Privacy on the Web: What is happening now in terms of privacy on the Web? Think about recent abuses and improvements. Describe and evaluate Web site policies, technical and privacy policy protections, and current proposals for government regulations.
  2. Personal Data Privacy Regulations in Other Countries: Report on personal data privacy regulations, Web site privacy policies, and governmental/law enforcement about access to personal data in one or more countries; e.g., the European Union.  This is especially relevant as our global economic community expands and we are more dependent on non-US clients for e-business over the Internet.
  3. Computer-Based Crimes: Discuss the most prevalent types of computer crimes, such as Phishing. Analyze why and how these can occur. Describe protective measures that might assist in preventing or mitigating these types of crimes.
  4. Government Surveillance of the Internet: The 9/11 attacks on the US in 2001 brought many new laws and permits more government surveillance of the Internet. Is this a good idea?
  5. The Digital Divide: Does it exist; what does it look like; and, what are the ethical considerations and impact?
  6. Privacy in the Workplace -Monitoring Employee Web and E-Mail Use: What are current opinions concerning the monitoring of employee computer use. What policies are employers using? Should this practice of monitoring, be authorized or not?
  7. Medical Privacy: Who owns your medical history? What is the state of current legislation to protect your health information? Is it sufficient?  There are new incentives with federal stimulus financing for health care organizations to develop and implement digital health records.
  8. Software Piracy: How many of you have ever made an unauthorized copy of software, downloaded software or music (free or for a fee), or used copyrighted information without giving proper credit or asking permission? Was this illegal or just wrong? How is this being addressed?
  9. 9.Consumer Profiling: With every purchase you make, every Web site you visit, your preferences are being profiled. What is your opinion regarding the legal authority of these organizations to collect and aggregate this data?
  10. Biometrics & Ethics: Your fingerprint, retinal-vessel image, and DNA map can exist entirely as a digital image in a computer, on a network, or in the infosphere.  What new and old ethical problems must we address?
  11. Social Networking:  What are some of the ethical issues surrounding using new social networks?  How are these now considered for business use?  What are business social communities?  Are new/different protections and security needed for these networks?
  12. Gambling in Cyberspace: Is it legal? Are there national regulations and/or licensing? What are the oversight and enforcement requirements? Are there international implications? What are the social and public health issues?
  13. Pornography in Cyberspace: For example, the U.S. Supreme Court ruling protecting as free speech computer-generated child pornography
  14. Medicine and Psychiatry in Cyberspace: Some considerations include: privacy issues; security; third-party record-keeping; electronic medical records; access to information, even by the patient (patient rights); access to information by outsiders without patient knowledge; authority to transfer and/or share information. Are there any policies proposed by professional organizations?
  15. Counterterrorism and Information Systems: Your protection versus your rights
  16. Open-source Software versus Closed-source Software: Ethical ramifications and impact on intellectual property law
  17. Creative Commons Licenses: How do they work and what are the legal and ethical impacts and concerns?
  18. Universal ID card: What is the general position of the U.S. government about issuing each individual a unique ID card? Which individual U.S. government agencies have already provided a unique ID card? What steps have been taken to include individual ID information electronically in passports? How is privacy and security provided?
  19. Video Games: Does playing video games distract from everyday responsibilities? Do video games correlate with real world violence? Why do game creators continually increase the violence of video games? What is video game addiction?
  20. Cyberbullying: What is cyberbullying and what can be done to stop it?
  21. Net Neutrality: What is the current position of the federal government and is it fair to all?

 

Bottom of Form

 

Issues Surrounding Personal Health Information (PHI) Ownership

  •  click here for more information on this paper

With an electronic health record, what do you see as a positive and a negative consequence of the legislation that enables patients to be able to correct the health information in their records?

a standard principle to encourage patient ownership of their healthcare. This also extends to their personal health information.

Do the patients in your setting able to read/view their medical record? What requirements regarding the electronic health record do you have in place?

In regards to an electronic health record, what do you see as a positive and a negative consequence of the legislation that enables patients to be able to correct the health information found in their personal health records? What are your feelings related to the practice of patients being allowed to access their own health care records?

Please remember to use your personal experiences and evidence based research to respond to this discussion.

Q2

Discuss the likely impact on the health care industry if all health care marketing were to stop tomorrow. Provide specific examples to support your response. Based on what you have learned in Chapter 1, evaluate your potential as the head of marketing for a health care organization of your choice. Explain your rationale by including what you would be good at and what might be a weakness. 

Write a paper (2,000-2,500 words) in which you apply the concepts of epidemiology and nursing research to a communicable disease. Refer to “Communicable Disease Chain,” “Chain of Infection,” and the CDC website for assistance when completing this assignment.

Communicable Disease Selection

Choose one communicable disease from the options below.

  1. Chickenpox
  2. Tuberculosis
  3. Influenza
  4. Mononucleosis
  5. Hepatitis B
  6. HIV
  7. Ebola
  8. Measles
  9. Polio
  10. Influenza

Epidemiology Paper Requirements

Address the following:

  1. Describe the chosen communicable disease, including causes, symptoms, mode of transmission, complications, treatment, and the demographic of interest (mortality, morbidity, incidence, and prevalence). Is this a reportable disease? If so, provide details about reporting time, whom to report to, etc.
  2. Describe the social determinants of health and explain how those factors contribute to the development of this disease.
  3. Discuss the epidemiologic triangle as it relates to the communicable disease you have selected. Include the host factors, agent factors (presence or absence), and environmental factors. Are there any special considerations or notifications for the community, schools, or general population?
  4. Explain the role of the community health nurse (case finding, reporting, data collection, data analysis, and follow-up) and why demographic data are necessary to the health of the community.
  5. Identify at least one national agency or organization that addresses the communicable disease chosen and describe how the organizations contribute to resolving or reducing the impact of disease.
  6. Discuss a global implication of the disease. How is this addressed in other countries or cultures? Is this disease endemic to a particular area? Provide an example.

A minimum of three peer-reviewed or professional references is required.

Prepare this assignment according to the guidelines found in the APA Style Guide, located in the Student Success Center. An abstract is not required.

  • NRS-427VN-RS2-CommunicableDiseaseChain.doc

In order for information to be shared between systems, whether electronic or manual, there must be a common format, language, or dialect that supports the system interface. In health care, there are many of these interfaces, and they provide standard ways in which health information can be exchanged. For example, Health Level Seven (HL7) is an accredited standards development organization that develops standard languages, which define how electronic messages sent between healthcare providers are formatted. Using the Internet, research other types of communications interfaces used in health care. Share your findings with the class, specifically in terms of applications for the interface you found. For example, how does it work? Why is it used? 300 words

Q2

Prepare a 5- to 7-slide Microsoft® PowerPoint® presentation with speaker notes totaling 50 words per slide that includes the following:

  • An introduction slide
  • Slides that present on or answer the following 5 points:
  • Top three elements of health and wellness you would want to improve in society
  • How will you incorporate nutrition and fitness as active parts of your life?
  • Describe an effective strategy for making effective healthcare decisions.
  • What are the environmental effects on your health from your home and other places you spend a great deal of time?
  • What are ways to protect and enhance your immune system?

Click the Assignment Files tab to submit your assignment.