“Provider Evaluation (Quality and Safety)”

  

Overview

In this age of acute competition and alignment of providers, systems are evolving to improve contracting opportunities, including population health, Accountable Care organizations, and models of health care delivery. They are targeting quality care at a value price. This assignment explores a provider of your choice to determine their desirability to be a member of a system and recommend improvements they may need to make to become more competitive in their market.

Requirements

Write a 2–3 page proposal in which you evaluate and make recommendations for a provider you have chosen in terms of safety, quality, and evidence-informed health care by doing the following:

  • Choose a health care provider—nursing home, hospital, home care, etc.
  • Using the search function on Medicare.gov to review your provider’s measures on safety, quality, and evidence-informed health care.
  • Pay attention to the publicly reported outcomes on mortality, rehospitalization, and infection rates, as well as patient satisfaction and preventive care.
    • Note: If you have chosen a home health provider, use the Home Health Quality Measures website to review their home health quality measures.
  • Identify other providers in the same geographic area, review their outcomes, and compare your provider (e.g., search by Zip code).
  • Determine how these outcomes impact this provider as a potential member for a health system, Accountable Care organization, or as a contender to obtain population health contracts.
  • Based on the reports, determine which quality initiative the providers should address through evidence-based practices, such as safety, quality, rehospitalizations, mortality, etc.
  • Would your provider be the desired member of a system?
  • What is your recommendation for this provider to improve their outcomes in order to improve reimbursement and to become a desirable member of a system of providers?
  •  Note: Wikipedia and similar websites are do not qualify as academic resources.

Think about disasters your community has or could potentially face

 

Discussion Question

Think about disasters your community has or could potentially face. Now, think about how your community is helping its members prepare.

  1. Explore your community and find an advertisement that represents helping community members be prepared for a disaster.

COVID 19 TESTING AND VACCINATION

  • Examples could be a billboard, poster at a bus stop, marquee sign, flyer, yard sign and more. Example: Sign advertising ‘free’ flu vaccinations at a local pharmacy.
  1. Upload that picture into the discussion.
    • To have it display in your post:
      1. Click the embed image (looks like a picture of a mountain),
      2. Choose upload image from the drop down arrow
      3. Click on the Upload Image (rocket ship) icon
      4. Click on the image you want to display
      5. Choose Open
      6. Click Submit
  2. Describe the message the advertisement is conveying.
    • Describe how the message impact preparedness.
  3. If you cannot find any advertisement in your community, https://keenwriter.xyz/uncategorized/think-about-disasters-your-community-has-or-could-potentially-face/  describe a type of advertisement for disaster preparedness you think would be most beneficial to your community and how it would be best conveyed.
  4. Next, identify one community setting that is impacted by the disaster advertisement you shared
    1. Settings:
      • Correctional facilities
      • Home health
      • Schools
      • Forensic areas
      • Hospice
      • Faith communities
      • Occupational health
  5. Analyze at least one nursing role (refer to Week 6 lesson) related to disaster preparedness in that setting. Example: In the school setting, what actions and interventions would be involved with the nurse as coordinator of disaster preparedness?
  6. Identify at least one key stakeholder related to the setting that a CHN could collaborate with regarding disaster preparedness. Include why this collaboration is important.

Your discussion post should look like:

  • Uploaded picture
  • Paragraph one: Describe the message the advertisement is conveying and how the message impact preparedness.
  • Paragraph two: Identify one community setting that is impacted by the disaster advertisement you shared. Analyze at least one nursing role related to disaster preparedness in that setting.
  • Paragraph three: Identify at least one key https://keenwriter.xyz/uncategorized/think-about-disasters-your-community-has-or-could-potentially-face/  stakeholder related to the setting that a CHN could collaborate with regarding disaster preparedness. Include why this collaboration is important.
  • Resources: Where did you find your data?

CSC C++ Program

 
Please Please Please Read the instructions and do everything listed there. if you no going to read the instructions and I received bad Credit I will do Bad Rating. 

Lab #11:

Write a program that will do the following:

  1. In main, declare an array of size 20 and name it “randomArray.”  Use the function in step 2 to fill the array.  Use the function in step 3 to print the array.  
  2. Create a function that generates 20 random integers with a range of 1 to 10 and places them into an array.  Re-cycle the functions from Lab 10 where appropriate.
    • Make this a function.
    • There will be two arguments in the parameter list of this function:  an array and the size of the array.
      • Within the function and the function prototype name the array:  intArray.
      • Within the function and the function prototype name the size of the array:  size.
    • The data type of the function will be void since the array will be sent back through the parameter list.
    • Bring in the function that generates and returns a random number that you created from the previous moduleCall that function from this within the loop that adds random numbers to the array.
  3. Display the contents of the array.  Re-cycle the function that prints out the contents of an integer array from Lab 10.
    • Make this a function.
    • There will be two arguments in the parameter list of this function:  an array and the size of the array.
      • Within the function and the function prototype name the array:  intArray.
      • Within the function and the function prototype name the size of the array:  size.
    • The data type of the function will be void since the array will be sent back through the parameter list.
  4. From main, generate one more random number (also from 1 to 10) from the random number function.  Do not put this in an array.  This is a stand alone variable that contains one random number.
  5. Search though the array and count how many times the extra random number occurs.  It is possible that the extra random number may occur more than once or not at all.

Output:

•  Display the entire array.

•  Display the extra random number.

•  Depending upon the result of your search, display one of the following:

–  How many times the random number occurs.

–  That the random number did not occur at all.

Also include:

  • Use a sentinel driven outer While Loop to repeat the task
    • Ask the User if they wish to generate a new set of random numbers
  • Clear the previous list of numbers from the output screen before displaying the new set.

NOTE 1: Other than the prompt to repeat the task, there is no input from the User in this program.
NOTE 2: This program will have 3 functions:

  1. The function that fills the array with random numbers.
  2. The function that generates one random number at a time (re-use the one from Lab 10).
  3. The function that prints out an array of integers (re-use the one from Lab 10).

    ======================= Please Read ======================

 

Searching Through Arrays

Now that we can store large amounts of data we are ready to learn was to process the data. One way is to search through the data we have stored.

To search for instances of a value in an Array, you use a looping structure – which begins with the starting position of the Array and loops through each consecutive cell. There are two types of searches.

If you are searching for a value where only one instance will occur in the array (no duplicates) then you search until the value is found or until you reach the end of the array. If more than one instance can occur in the array then you must search until you reach the end of the array. If you are not sure whether there will be only one instance of a value or not then you assume it could occur more than once and use the second method.

Searching for a single instance of a value in an Array

When searching for one instance, you use a sentinel driven While or Do Loop. When setting up the condition for the looping structure, you must stop when one of two things occur:

You must stop when the value is found

OR

You must stop when you reach the end of the Array

The pseudo-code would look like this:

initialize index to the beginning index value of your Array
initialize a flag (Boolean variable) to false to represent element not found
WHILE the flag is equal to false AND index is less than size of Array
      IF the element at Array (index) is equal to the element you are searching for THEN
             flag is assigned true (element found)
      ELSE
             increment index
      END IF
END WHILE

  • This will cycle through all of the elements stored in the Array and stop when the element is found OR when you are at the end of the Array – whichever comes first.
  • When the Loop ends the value of index will be one of two values. You can determine whether or not the element was found based upon the index value.
    • The Index Value will either contain the position of where the element was found OR it will be equal to the size of the array.
      • Remember, the condition to end the loop must be false – so the variable that counts will contain the size of the array if the element was not found.
  • When the Loop ends the value of flag will be either True or False.
    • If the value of flag is True then the element was found and index value will indicate where.
    • If the value of the flag is False then the element was not found and index will be equal to the size of the array.

Remember:

  • Value was NOT FOUND:
    • If the value of index is equal to the size of the array AND the flag is still false then the element was not found.
  • Value was FOUND:
    • If the value of index is NOT equal to the size of the array AND the Boolean flag is true then this means that the element was found and index contains the position number of where the element was found.

NOTE 1: This is only one way to search for a element contained within an Array. There are many other ways.

NOTE 2: This assumes there is only one instance of an element in the Array.

Searching for duplicate instances of a value in an Array

If you need to search for a value that can occur more than once in an array then you need to cycle through the ENTIRE Array (instead of stopping when the first instance is found) and count (using a different counter than the Loop index) how many times the element occurred. Within each cycle, a comparison is made between the value you are searching for and the contents of the cell. Each time there is a match you count it by incrementing a counter.

Initialize the counter to 0 (to start counting)
FOR (index is equal to beginning index value of Array, index is less than size of Array, increment index by 1)
      IF the element at Array (index) is equal to the element you are searching for THEN
             increment the counter (element found)
      END IF
END FOR

In this algorithm, when the looping structure ends the counter will either be zero or it will contain the number of instances the value occurred within the array. If the counter is zero then there were no instances of the value in the array.

 

Your Responsibilities in Module 11

Module Overview:

This Module continues with the topic of arrays. The focus is on how to process data stored within an array.  Searching for and sorting data within an array is discussed.

Module Learning Objectives:

  • Students will be able to search for data within an array.
  • Students will be able to use a simple sorting routine to sort data within an array.

Readings:

1.  Read all Mini-Lectures Module 11

2.  Text:

  • Chapter 9
  • Chapter 3.7 Review (Pages 143 -150)
  • Chapter 6.4  (Pages 321 – 323)

    I will upload for you the textbook

Ds10

Discussion 1: Gender Differences in Mate Selection

Evolutionary theory is often invoked to explain gender differences in mate selection. If the motive to reproduce explains men’s attraction to young (pretty) women and women’s attraction to financially stable men—as evolutionary psychologists claim—then how does it explain the increasing number of women who do not depend on men for financial stability because they are themselves economically independent?

Or, how does one explain the increasing number of women who choose not to have children? If they do not plan to have children, then they certainly do not need a financially stable mate committed to the long-term care of offspring they do not intend to have. Or, how can evolutionary theory explain the increasing number of women who are not married yet have children?

For this Discussion, you will examine conditions that influence diffusion of responsibility from the perspective of mate selection. 

To Prepare
  • Review the Learning Resources for this week and examine how social psychology theories and research explain mate selection.
  • Compare evolutionary theory and social psychology theories as they apply to mate selection.
By Day 3

Post whether or not the rules of attraction change for women as a function of their economic independence. Explain whether or not the rules of attraction are biological imperatives or cultural constructions, or both. Please use social psychology theory to refute claims based on evolutionary theory.

resources to use for post: 

Aronson, E., Wilson, T. D., Akert, R. M., & Sommers, S. R. (Eds.). (2019). Social psychology (10th ed.). Boston, MA: Pearson.

  • Chapter 10, “Attraction and Relationships: From Initial Impressions to Long-Term Intimacy”
  • Chapter 11, “Prosocial Behavior: Why Do People Help?” &also peer reviewed literature 

Differential Diagnosis for Skin Conditions

 Properly identifying the cause and type of a patient’s skin condition involves a process of elimination known as differential diagnosis. Using this process, a health professional can take a given set of physical abnormalities, vital signs, health assessment findings, and patient descriptions of symptoms, and incrementally narrow them down until one diagnosis is determined as the most likely cause.

In this Assignment, you will examine several visual representations of various skin conditions, describe your observations, and use the techniques of differential diagnosis to determine the most likely condition.

To Prepare

  • Review the      Skin Conditions document provided in this week’s Learning Resources, and      select one condition to closely examine for this Lab Assignment.
  • Consider the      abnormal physical characteristics you observe in the graphic you selected.      How would you describe the characteristics using clinical terminologies?
  • Explore      different conditions that could be the cause of the skin abnormalities in      the graphics you selected.
  • Consider      which of the conditions is most likely to be the correct diagnosis, and      why.
  • Search for      one evidence-based practice, peer-reviewed article based on the skin      condition you chose for this Lab Assignment.
  • Review the      Comprehensive SOAP Exemplar found in this week’s Learning Resources to      guide you as you prepare your SOAP note.
  • Download the      SOAP Template found in this week’s Learning Resources, and use this      template to complete this Lab Assignment.

The Lab Assignment

  • Choose one      skin condition graphic (identify by number in your Chief Complaint) to      document your assignment in the SOAP (Subjective, Objective, Assessment,      and Plan) note format rather than the traditional narrative style. Refer      to Chapter 2 of the Sullivan text and the Comprehensive SOAP Template in      this week’s Learning Resources for guidance. Remember that not all      comprehensive SOAP data are included in every patient case.
  • Use clinical      terminologies to explain the physical characteristics featured in the      graphic. Formulate a differential diagnosis of three to five possible conditions for the      skin graphic that you chose. Determine which is most likely to be the      correct diagnosis and explain your reasoning using at least three      different references, one reference from current evidence-based literature      from your search and two different references from this week’s Learning      Resources.

Resources 

Ball, J. W., Dains, J. E., Flynn, J. A., Solomon, B. S., & Stewart, R. W. (2019). Seidel’s guide to physical examination: An interprofessional approach (9th ed.). St. Louis, MO: Elsevier Mosby.

· Chapter 9, “Skin, Hair, and Nails”
 

This chapter reviews the basic anatomy and physiology of skin, hair, and nails. The chapter also describes guidelines for proper skin, hair, and nails assessments.

Colyar, M. R. (2015). Advanced practice nursing procedures. Philadelphia, PA: F. A. Davis.

Credit Line: Advanced practice nursing procedures, 1st Edition by Colyar, M. R. Copyright 2015 by F. A. Davis Company. Reprinted by permission of F. A. Davis Company via the Copyright Clearance Center.

This section explains the procedural knowledge needed prior to performing various dermatological procedures.

Dains, J. E., Baumann, L. C., & Scheibel, P. (2019). Advanced health assessment and clinical diagnosis in primary care (6th ed.). St. Louis, MO: Elsevier Mosby.

Credit Line: Advanced Health Assessment and Clinical Diagnosis in Primary Care, 6th Edition by Dains, J.E., Baumann, L. C., & Scheibel, P. Copyright 2019 by Mosby. Reprinted by permission of Mosby via the Copyright Clearance Center.

Chapter 28, “Rashes and Skin Lesions”
This chapter explains the steps in an initial examination of someone with dermatological problems, including the type of information that needs to be gathered and assessed.

Illustration Essay – 500 words

     

In short, an illustration essay will use clear, interesting examples to show, explain, and 

 

support a thesis statement (remember, your thesis is your main argument, or the main 

 

point you’re trying to make). One key to an effective illustration essay is to use enough 

 

details and specific examples to make your point effectively. In other words, descriptive 

 

writing is key. 

  

will help you understand more about evaluating sources. Failure to use and cite at least one credible source will result in a point deduction from your grade. Properly cite your source(s) in MLA format and include a Works Cited page (this resource from the course will help). Review the rubric for this essay to get an idea of how your work will be assessed. 

As with all college writing, your essay should have a strong thesis statement in addition to an introduction, body, and conclusion. 

Thesis hints: Here are some general and specific examples of how you might think about your thesis for this assignment: 

General:
If you are illustrating qualities that make up something:
In order for a friend to be considered a true friend, he or she must be (characteristic 1), (characteristic 2), and (characteristic 3).
OR
If you are illustrating a recipe:
(Add a range of ingredients), (add major utensils needed), and (add time necessary) are all that are required to make (add dish). 

Specific:
If you are illustrating qualities that make up something:
In order for a friend to be considered a true friend, he or she must be loyal, honest, and trustworthy. OR
If you are illustrating a recipe:
Fresh produce, mixing utensils, and about a half an hour are all you need to create excellent guacamole. 

The guidelines for this assignment are as follows: Length: This assignment should be at least 500 words. 

Header: Include a header in the upper left-hand corner of your writing assignment with the following information: 

  •   Your first and last name
     
  •   Course Title (Composition II)
     
  •   Assignment name (Illustration Essay)
     
  •   Current Date
    Format:
     
  •   MLA-style source documentation and Works Cited2
     
  •   Your last name and page number in the upper-right corner of each page
    2 This resource may be helpful as you are making MLA formatting decisions:
    https://owl.english.purdue.edu/owl/resource/747/01/
     

  

  •   Double-spacing throughout
     
  •   Standard font (TimesNewRoman, Calibri)
     
  •   Title, centered after heading
     
  •   1” margins on all sides
     
  •   Save the file using one of the following extensions: .docx, .doc, .rtf, or .txt
    Underline your thesis statement in the introductory paragraph.
     

Compare and contrast draft

Page 11 of 13icon_forwardicon_back

Compare and Contrast, Subject and Verb Agreement

ENG 002  Module 5

Rectangle frame Course   Perspective   Objectives   Assignment Overview   Compare and Contrast   Reading   Compare and Contrast Structures   AVP: The Compare and Contrast Essay   Subject-Verb Agreement Exercise   Discussion   MyWritingLab Exercises   Compare and Contrast Paragraph Draft   Cause and Effect Paragraph Final Version    Module Progress green RectangleLine

Previous

Next

Compare and Contrast Paragraph Draft

After reading Chapter 6 in Along These Lines, write a draft compare and contrast paragraph. The paragraph should use one of the two structures you have learned in this module.

The paragraph should be well-developed, which means: you need a topic sentence, supporting sentences, and a concluding sentence (clincher). The paragraph should be unified and coherent with specific supporting details or examples for support. It should provide sentence variety (simple, compound, and complex sentences). The sentences should be clear, concise, and arranged in a logical order. Transitional words and phrases should be used to provide coherence. Choose one point of view: first, second, or third person.

Complete and submit the draft of your compare and contrast paragraph to Smarthinking no later than Sunday 11:59 PM EST/EDT. Smarthinking can be accessed by clicking the Services link under Resources.

NOTE: When you submit your paragraph, you need to let them know it is a compare and contrast paragraph. The tutors need to know it is a paragraph, not an essay, and which kind of paragraph you are submitting.

Physics Report

I already visited this center and I have many photos from California science center for space shuttle and information labels for each part from shuttle in my phone if we have deal to do it and need them I will send them to you. ( I will add some of them in attachments)

I need report to explain relationship between this space shuttle and my physics class topics in this class.

Visit the Space Shuttle Endeavour at the California Science Center.  Prepare a 1 Or 2 pages report (500 to 600 word limit).  Tell me of your visit and how it relates to our Classical Mechanics one or two of this class topics (Units, Vectors, 2D Motion,  Relative Motion, perpendicular acceleration, Circular Motion,Linear Momentum,Newton’s Laws,Work and Kinetic Energy ,Potential Energy, Conservation of  Energy ,Center of  Mass Conservation of Momentum, Elastic & Inelastic Collisions, Reference Frame, Rotational Kinematics & Moment of  Inertia , Rotational Dynamics ,Angular Momentum ,Rotational Statics , Simple Harmonic Motion ) course (i.e., choose a topic or two we have or will covered in class, and discuss how it relates to the space shuttle, it’s design and/or operation). Consider this a technical report, where equations and discussion of each variable in it is expected. 

For more information on location, hours and costs, please visit: California Science Center – Endevour (Links to an external site.)

This exercise aligns with our course’s Learning Objectives, among which are to:

Demonstrate knowledge of physical principles used to model natural phenomena.

Demonstrate ability to convey physical concepts with mathematical expressions, and effectively derive quantitative predictions from a model through mathematical analysis.

wk 1 Assign Pharm 6521

Assignment: Ethical and Legal Implications of Prescribing Drugs

What type of drug should you prescribe based on your patient’s diagnosis? How much of the drug should the patient receive? How often should the drug be administered? When should the drug not be prescribed? Are there individual patient factors that could create complications when taking the drug? Should you be prescribing drugs to this patient? How might different state regulations affect the prescribing of this drug to this patient?

These are some of the questions you might consider when selecting a treatment plan for a patient.  

Photo Credit: Getty Images/Caiaimage

As an advanced practice nurse prescribing drugs, you are held accountable for people’s lives every day. Patients and their families will often place trust in you because of your position. With this trust comes power and responsibility, as well as an ethical and legal obligation to “do no harm.” It is important that you are aware of current professional, legal, and ethical standards for advanced practice nurses with prescriptive authority. Additionally, it is important to ensure that the treatment plans and administration/prescribing of drugs is in accordance with the regulations of the state in which you practice. Understanding how these regulations may affect the prescribing of certain drugs in different states may have a significant impact on your patient’s treatment plan. In this Assignment, you explore ethical and legal implications of scenarios and consider how to appropriately respond.

To Prepare
  • Review the Resources for this module and consider the legal and ethical implications of prescribing prescription drugs, disclosure, and nondisclosure.
  • Review the scenario assigned by your Instructor for this Assignment.
  • Search specific laws and standards for prescribing prescription drugs and for addressing medication errors for your state or region, and reflect on these as you review the scenario assigned by your Instructor.
  • Consider the ethical and legal implications of the scenario for all stakeholders involved, such as the prescriber, pharmacist, patient, and patient’s family.
  • Think about two strategies that you, as an advanced practice nurse, would use to guide your ethically and legally responsible decision-making in this scenario, including whether you would disclose any medication errors.
By Day 7 of Week 1

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

  • Explain the ethical and legal implications of the scenario you selected on all stakeholders involved, such as the prescriber, pharmacist, patient, and patient’s family.
  • Describe strategies to address disclosure and nondisclosure as identified in the scenario you selected. Be sure to reference laws specific to your state.
  • Explain two strategies that you, as an advanced practice nurse, would use to guide your decision making in this scenario, including whether you would disclose your error. Be sure to justify your explanation. 
  • Explain the process of writing prescriptions, including strategies to minimize medication errors.

Reminder: The College of Nursing requires that all papers submitted include a title page, introduction, summary, and references. The College of Nursing Writing Template with Instructions provided at the Walden Writing Center offers an example of those required elements (available at https://academicguides.waldenu.edu/writingcenter/templates/general#s-lg-box-20293632). All papers submitted must use this formatting.

Learning Resources

Required Readings (click to expand/reduce)

Rosenthal, L. D., & Burchum, J. R. (2021). Lehne’s pharmacotherapeutics for advanced practice nurses and physician assistants (2nd ed.) St. Louis, MO: Elsevier.
Chapter 1, “Prescriptive Authority” (pp. 1–3)
Chapter 2, “Rational Drug Selection and Prescription Writing” (pp. 4–7)
Chapter 3, “Promoting Positive Outcomes of Drug Therapy” (pp. 8–12)
Chapter 4, “Pharmacokinetics, Pharmacodynamics, and Drug Interactions” (pp. 13–33)
Chapter 5, “Adverse Drug Reactions and Medication Errors” (pp. 34–42)
Chapter 6, “Individual Variation in Drug Response” (pp. 43–45)

American Geriatrics Society 2019 Beers Criteria Update Expert Panel. (2019). American Geriatrics Society 2019 updated AGS Beers criteria for potentially inappropriate medication use in older adults. Journal of the American Geriatrics Society, 67(4), 674–694. doi:10.1111/jgs.15767
American Geriatrics Society 2019 updated AGS Beers criteria for potentially inappropriate medication use in older adults by American Geriatrics Society, in Journal of the American Geriatrics Society, Vol. 67/Issue 4. Copyright 2019 by Blackwell Publishing. Reprinted by permission of Blackwell Publishing via the Copyright Clearance Center.

This article is an update to the Beers Criteria, which includes lists of potentially inappropriate medications to be avoided in older adults as well as newly added criteria that lists select drugs that should be avoided or have their dose adjusted based on the individual’s kidney function and select drug-drug interactions documented to be associated with harms in older adults.

Drug Enforcement Administration. (n.d.-a). Code of federal regulations. Retrieved February 1, 2019, from https://www.deadiversion.usdoj.gov/21cfr/cfr/1300/1300_01.htm

This website outlines the code of federal regulations for prescription drugs.

Drug Enforcement Administration. (n.d.-b). Mid-level practitioners authorization by state. Retrieved May 13, 2019 from http://www.deadiversion.usdoj.gov/drugreg/practioners/index.html

This website outlines the schedules for controlled substances, including prescriptive authority for each schedule.

Drug Enforcement Administration. (2006). Practitioner’s manual. Retrieved from http://www.legalsideofpain.com/uploads/pract_manual090506.pdf
This manual is a resource for practitioners who prescribe, dispense, and administer controlled substances. It provides information on general requirements, security issues, recordkeeping, prescription requirements, and addiction treatment programs.

Drug Enforcement Administration. (n.d.-c). Registration. Retrieved February 1, 2019, from https://www.deadiversion.usdoj.gov/drugreg/index.html

This website details key aspects of drug registration.

Fowler, M. D. M., & American Nurses Association. (2015). Guide to the Code of Ethics for Nurses with Interpretive Statements: Development, Interpretation, and Application (2nd ed.). Silver Spring, Maryland: American Nurses Association.

This resource introduces the code of ethics for nurses and highlights critical aspects for ethical guideline development, interpretation, and application in practice.

Institute for Safe Medication Practices. (2017). List of error-prone abbreviations, symbols, and dose designations. Retrieved from https://www.ismp.org/recommendations/error-prone-abbreviations-list

This website provides a list of prescription-writing abbreviations that might lead to misinterpretation, as well as suggestions for preventing resulting errors.

Ladd, E., & Hoyt, A. (2016). Shedding light on nurse practitioner prescribing. The Journal for Nurse Practitioners, 12(3), 166–173. doi:10.1016/j.nurpra.2015.09.17

This article provides NPs with information regarding state-based laws for NP prescribing.

Sabatino, J. A., Pruchnicki, M. C., Sevin, A. M., Barker, E., Green, C. G., & Porter, K. (2017). Improving prescribing practices: A pharmacist‐led educational intervention for nurse practitioner students. Journal of the American Association ofNursePractitioners, 29(5), 248–254. doi:10.1002/2327-6924.12446

The authors of this article assess the impact of a pharmacist‐led educational intervention on family nurse practitioner (FNP) students’ prescribing skills, perception of preparedness to prescribe, and perception of pharmacist as collaborator.

Required Media (click to expand/reduce)

Introduction to Advanced Pharmacology
Meet Dr. Terry Buttaro, associate professor of practice at Simmons College of Nursing and Health Sciences as she discusses the importance of pharmacology for the advanced practice nurse. (8m)
Accessible player –Downloads–Download Video w/CCDownload AudioDownload Transcript

Nature Video. (2016). The evolution of oral anticoagulants [Video]. https://www.youtube.com/watch?v=Gp-ucDRiaUA
Note: This media program is approximately 5 minutes.

Speed Pharmacology. (2015). Pharmacology Pharmocokinetics (Made Easy) [Video]. https://www.youtube.com/watch?v=NKV5iaUVBUI&t=16s
Note: This media program is approximately 14 minutes.

Speed Pharmacology. (2017).  Pharmacology Diuretics (Made Easy) [Video]. https://www.youtube.com/watch?v=9OBvNpnS0h4&t=664s
Note: This media program is approximately 18 minutes.

Speed Pharmacology. (2017). Pharmacology Antiarrhythmic Drugs (Made easy) [Video]. https://www.youtube.com/watch?v=9xSqezCMHnw&t=1205s
Note: This media program is approximately 23 minutes.

Speed Pharmacology. (2015). Pharmacology Pharmocokinetics (Made Easy) [Video]. https://www.youtube.com/watch?v=NKV5iaUVBUI&t=16s
Note: This media program is approximately 14 minutes.

Speed Pharmacology. (2016). Pharmacology – Adrenergic receptors & agonists (MADE EASY) [Video]. https://www.youtube.com/watch?v=KtmV-yMDYPI&t=372s
Note: This media program is approximately 18 minutes.

Speed Pharmacology. (2017). Drugs for Hyperlipidemia (Made Easy) [Video]. https://www.youtube.com/watch?v=Of1Aewx-zRM&t=24s
Note: This media program is approximately 14 minutes.

pls use three resources for this assignment