Entries by Student

write my assignment 10157

PROMPT:

Imagine you are going to conduct research investigating a human behavior that you would be interested in learning more about.

 RESEARCH METHODS

1. Describe what research method you would use for investigating it.

2. What drew you to this method?  Why would it be well suited for your hypothetical research?

3. What are the strengths and weaknesses of this type of research?

INSTRUCTIONS:

PLEASE USE REFERENCE AND INFORMATION BELOW STATED FOR ADDITIONAL ASSISTANCE; 

APA FORMAT/HEADING

100 WORDS FOR EACH QUESTION (3 QUESTIONS)

PLEASE USE REFERENCES LISTED ALSO FOR ADDITIONAL INFORMATION: 

BOOK:Introduction to Psychology by Lindecker, C. (2017)

NO GRAMMAR ISSUES/NO ERRORS

3 CREDIBLE SCHOLARLY SOURCES

PLEASE WRITE IN OWN WORDS/SUMMARIZING!!!!!!!!!!

PLEASE NO IN TEXT CITATIONS!!!!!!!!!

 

"Not answered?"


Get the Answer

write my assignment 14407

  1. A psychologist would like to measure the effectiveness of a new treatment for Generalized Anxiety Disorder. To do so, she first measures the level of anxiety experienced by her patients before they receive any treatment. She uses a self-report measure called the State-Trait Anxiety Inventory (STAI). Higher scores indicate more anxiety. She then provides the new treatment, which takes 12 sessions. After the 12 sessions are completed, she again has her patients complete the STAI to measure their anxiety symptoms. The data are as follows:

Patient

Pre-treatment STAI score

Post-treatment STAI score

A

45

28

B

38

33

C

27

28

D

42

31

E

29

28

F

35

22

G

31

19

H

32

31

  1. What kind of a research design is the psychologist using? (circle one)

Independent measures (between subjects)

Repeated measures (within subjects)

  1. What is the dependent variable in this study? (be specific)
  2. Using the appropriate statistical procedure, conduct a hypothesis test to determine whether the treatment was effective. Use a two-tailed test, α = .05. BE SURE TO INCLUDE ALL 4 STEPS OF THE HYPOTHESIS-TESTING PROCEDURE! Don’t forget to calculate the effect size if necessary.

 

"Not answered?"


Get the Answer

write my assignment 27390

I wrote this code and now want to include Python’s exception handling using try/except to catch the error and print out a customized error message. I created a section called #Exception handling for this in the body of my code. Thanks for the help!

from math import *

def main():

#Creates entire main function.

   # GUI Setup

   win = GraphWin(“Circle Intersection”, 600, 300)

   win.setCoords(0, 0, 600, 300)

   leftScr = Rectangle(Point(0, 0), Point(300, 300))

   leftScr.setFill(“peachpuff”)

   leftScr.draw(win)

   for i in range(0,600,):

       Line(Point(0,i*10),Point(10,i*10)).draw(win)

   Text(Point(15,150), “0”).draw(win).setSize(9)

#This is a circle function:

   Cc =Circle(Point(150,150),4)

   Cc.setFill(“white”)

   Cc.draw(win)

#Information Gathering from console

   Text(Point(450,280), “This Program Computes the Intersection”).draw(win).setSize(9)

   Text(Point(450,260), “of a Circle with a horizontal line.”).draw(win).setSize(9)

   Text(Point(400,190), “What is the Radius?: “).draw(win).setSize(9)

   Text(Point(409,160), “Define the Y-Intersect (< radius)?: “).draw(win).setSize(9)

#Input

   Radius = Entry(Point(520,190), 5)

   Radius.setText(“0.0”)

   Radius.draw(win)

   yInt = Entry(Point(520,160), 5)

   yInt.setText(“0.0”)

   yInt.draw(win)

   win.getMouse()

   y = float(yInt.getText())

   r = float(Radius.getText())

#This is input controls:

   if r<y:

       Text(Point(450,8), “ERROR: Radius < Y Intercept”).draw(win).setSize(9)

       Text(Point(450,20), “Click again to Quit”).draw(win).setSize(9)

       win.getMouse()

   else:

       #Output

       yIntLine = Line(Point(0,y+150), Point(300,y+150))

       yIntLine.draw(win)

       C = Circle(Point(150,150),r)

       C.draw(win)

#Adding Exception handling:

#Processing values for screen drawing output

       Xpos =  sqrt((r**2) – (y**2))

       Xneg = -1 * sqrt((r**2) – (y**2))

       Text(Point(400,100), “X int is:”).draw(win).setSize(9)

       Text(Point(400,80), “-X int is:”).draw(win).setSize(9)

       Text(Point(500,100), Xpos).draw(win).setSize(9)

       Text(Point(500,80), Xneg).draw(win).setSize(9)

       Cxn = Circle(Point(Xneg+150,y+150),4).draw(win).setFill(“red”)

       Cxp = Circle(Point(Xpos+150,y+150),4).draw(win).setFill(“red”)

#Click to close window

       Text(Point(450,20), “Click again to Quit”).draw(win).setSize(9)

       win.getMouse()

#Closes the windew       

   win.close()

#Executes function main

main()

 

"Not answered?"


Get the Answer

write my assignment 11309

Identify the current national health policy issue for which you would like to advocate or amend (for your critical assignment).  Develop three potential policy options that would help address your identified issue.  This submission should be no less than five pages and no more than six.  Include each of the following components-

Background: Provide a one-page (max.) overview of your chosen health policy issue.

Policy Options: Develop three potential policy options and describe each with 2–3 paragraphs of detail. (No more than two-pages max.)

Supporting Argument: Provide a one-page (max.) argument supporting one of your policy options.

Opposing Argument: Provide a one-page (max.) argument detailing the opposing argument of your policy recommendation.

Recommendation for Action: This should support the policy option you have chosen along with the justification for your decision. (No more than one-page max.)

The following web link may be useful as you work through this assignment.

USA Federal Legislation – https://

 

"Not answered?"


Get the Answer