>Management homework help

Search Yahoo Finance or/and any other credible source(s) to find the most recent income

statement and balance sheet of a major corporation.

● Provide these statements in the appropriate format (financial statement)

● Perform a vertical financial analysis incorporating

i. Debt ratio

ii. Debt to equity ratio

iii. Return on assets

iv. Return on equity

v. Current ratio

vi. Quick ratio

vii. Inventory turnover

viii. Days in inventory

ix. Accounts receivable turnover

x. Accounts receivable cycle in days

xi. Accounts payable turnover

BUS 550 Syllabus

8 of

xii. Accounts payable cycle in days

xiii. Earnings per share (EPS)

xiv. Price to earnings ratio (P/E)

xv. Cash conversion cycle (CCC), and

xvi. Working capital

xvii. Explain Dupont identity, apply it to your selected company, interpret the

components in Dupont identity.

Provide your explanations and definitions in detail and be precise. Comment on your findings.

Provide references for content when necessary. Provide your work in detail and explain in your

own words. Support your statements with peer-reviewed in-text citation(s) and reference(s). All

PA and CLA submissions require at least six (6) peer-reviewed references, which should

include the source of the data.

>Social Science homework help

  • For the sources you identify from off the syllabus, they must be scholarly. That means:
    • No Wikipedia, Yahoo! Answers, About.com, Helium, Metafilter, Associated Content, etc, and no dictionaries or encyclopedias of any kind. 
    • In general, you should also avoid “fact sheets,” basic websites for organizations (again, unless your topic relates to things like a professional association’s approach to engaging with the public, in which case we can certainly talk about how to tackle that issue). 
    • Try to avoid popular news articles, unless your topic specifically relates to popular coverage of scientific findings. Ask me if you really feel like you have one that’s legitimate for your topic.
    • No amateur blogs—if you want to include a professional’s blog, ask me about it. If you’re unsure whether the blog entry you’re contemplating is appropriate, ask.
  • This is an ANNOTATED bibliography, regardless of which option you have chosen. For each source, include one or two sentences about the contribution the source makes toward your final paper. These claims should be clear and specific, conveying that you have actually read through them at least once and know that they’re appropriate for/integral to your paper. Your annotations should bear in mind and address any feedback I gave you on your original abstract.

I attached a pdf that includes my thesis and abstract for the paper and the rubric. I also attached two articles that I already have and please include in the 6 sources. And need to rewrite my abstract paragraph the last two sentences with the underline.  SO you need to find 4 sources for me!

  • attachment

    ThesisAbstract1.pdf
  • attachment

    rubric1.png
  • attachment

    VanGennep1909RitesofPassage.pdf
  • attachment

    Hertz1960ContributiontotheCollectiveRepresentationofDeath.pdf

>Computer Science homework help

BLCN532 Lab 1

Set up your development environment

V2.0

Introduction

This course introduces students to blockchain development for enterprise environments. Before you can develop software applications, you need to ensue your development environment is in place. That means you’ll need all the tools and infrastructure installed and configured to support enterprise blockchain software development projects.

In this lab you’ll set up your own Hyperledger Fabric development environment and install the course software from the textbook. When you finish this lab, you’ll have a working development environment and will be ready to start running and modifying blockchain applications.

The instructions in your textbook are for Mac and Linux computers. However, there is no guarantee that your installation of MacOS or Linux is completely compatible with the environment in which the commands from the textbook work properly. For that reason, I STRONGLY SUGGEST that you acquire an Ubuntu 16.04 Virtual Machine (VM) for your labs. Using an Ubuntu 16.04 VM will make the labs far easier to complete.

The instructions in this course’s labs assume that your computer runs the Windows operating system. If you run MacOS or Linux, you can get Vagrant and VirtualBox for those operating systems and follow the gist of the “Initial setup for Windows computers”.

Lab Deliverables:

To complete this lab, you must create a Lab Report file and submit the file in iLearn. The Lab Report file must be a Microsoft Word format (.docx), and have the filename with the following format:

BLCN532_SECTION_STUDENTID_LASTNAME_FIRSTNAME_Lab01.docx

· SECTION is the section number of your current course (2 digits)

· STUDENTID is your student ID number (with leading zeros)

· LASTNAME is your last name, FIRSTNAME is your first name

To get started, create a Microsoft Word document (.docx) with the correct filename for this lab. You’ll be asked to enter text and paste screenshots into the lab report file.

NOTE: All screenshots MUST be readable. Use the Ubuntu Screen Capture utility (see the lab video.) Make sure that you label each screenshot (i.e. Step 2.1.3) and provide screenshots in order. For commands that produce lots of output, I only want to see the last full screen when the command finishes. Provide FULL screenshots, NOT cropped images.

SECTION 1: Initial setup for Windows computers (Chapter 3)

Step 1.1: Install Oracle Virtualbox (Windows, Linux, MacOS)

Oracle Virtualbox is an open source virtualization environment that allows you to run multiple virtual machines and containers on a single personal computer. Virtualbox is free and it is easy to install.

In your favorite web browser, navigate to: https://www.virtualbox.org/ and click the “Download Virtualbox” button. Click the “Windows hosts” link to download the main installation executable. You should also click the “All supported platforms” under the “Extension Pack” heading to download extra software support for devices.

After you download the two files, double click each one to run the install procedure.

Step 1.2: Install Vagrant (Windows, Linux, MacOS)

Vagrant is a free virtual environment management utility. It makes the process of starting, stopping, and managing virtual machines easier. In your web browser, navigate to https://www.vagrantup.com/ then click the “Download” button, and click the version of the Windows executable you’d like to install. (Most of you should select the “64-bit” version.)

Once you download the install program, double-click the file you just downloaded to install Vagrant.

If you want more information on Vagrant and tips on getting the most out of the software, navigate to:

https://www.sitepoint.com/getting-started-vagrant-windows/ .

Step 1.3: Set up your Vagrant project

After installing all the pre-requisite pieces, you need to set up your Vagrant project. A Vagrant project defines your virtual machine environment and helps you organize your collection of VMs into a group that is easy to manage.

We’ll use the Windows PowerShell as our Windows command prompt environment. PowerShell is a very powerful command line interface that is available on all Windows computers.

To launch PowerShell, click the Windows key, type PowerShell, then click the Windows PowerShell menu entry. The figure below shows a portion of the Windows PowerShell command prompt window.

 

PowerShell uses your user’s home directory as its starting directory. In my case, C:\Users\micha is my home directory. For the rest of the lab, I’ll refer to this a %HOME%. Your %HOME% will be different.

1.3.1: Remove existing Vagrant projects

Follow these steps ONLY if you already have a previous Vagrant project you want to remove: (Assume the project you want to remove is located in the %HOME%\vagrant\Hyperledger directory.)

If you DO NOT have an existing Vagrant project that you need to remove, skip to section 1.3.2.

1. PS %HOME%\vagrant\Hyperledger> vagrant global-status

Note the id of the listed VM(s). You’ll use this id in the next command, in place of xxxxxxx.

2. PS %HOME%\vagrant\\Hyperledger> vagrant destroy xxxxxxx

3. PS %HOME%\vagrant\\Hyperledger> vagrant box remove ubuntu/xenial64

1.3.2: Create a new Vagrant project for Hyperledger

Launch PowerShell and enter the following commands: (Don’t type ‘PS %HOME%>’, that’s just the PowerShell prompt. Just type the characters in bold.)

1. PS %HOME%> mkdir vagrant

2. PS %HOME%> cd vagrant

3. PS %HOME%\vagrant> mkdir Hyperledger

4. PS %HOME%\vagrant> cd Hyperledger

5. PS %HOME%\vagrant\Hyperledger> vagrant init kelly219design/ubuntu-xenial-16.04-gui-desktop-base

Make sure that you enter the line above as ONE LINE at the PowerShell prompt 

6. Go to the Blackboard site (ucumberlands.blackcoard.com) and login.

7. Navigate to this course (BLCN532) -> Content for this week, Lab01.

a. Download the Vagrantfile file and copy it to the %HOME%\vagrant\Hyperledger directory. (This will overwrite the Vagrantfile that was already there.)

8. PS %HOME%\vagrant\Hyperledger> vagrant up

NOTE: To stop your VM type vagrant halt in PowerShell

Section 2: Install Pre-requisites (Chapter 3)

Once you have an operating Linux VM, you can start to install the Hyperledger Fabric pre-requisites. In this section you’ll install all the software and configuration pieces necessary to run the class enterprise blockchain application in Hyperledger Fabric.

Step 2.1: Install pre-reqs

2.1.1: Install dev tools

1. If you haven’t started your VM, do the following:

a. Open Windows PowerShell, then navigate to your Hyperledger project directory.

b. PS %HOME%\vagrant\Hyperledger> vagrant up

2. Login to your VM using the username: vagrant and password: vagrant

3. Click “Search your computer” (upper left corner icon), then type terminal.

4. Click on the Terminal icon to launch a terminal with a shell prompt.

You type all the following commands in your Linux VM (at the Terminal command prompt.)

Don’t type the ‘$’ character. That is the prompt character of a regular user to remind you that this is a command you should enter in Linux. When you see a ‘#’ character, that indicates you are in an elevated privilege shell. And the ‘>’ character indicates you’re in PowerShell. Pay attention to the prompt characters – they give you valuable information about your current context.

5. $ sudo apt-get update

6. $ sudo apt-get install libltdl-dev

2.1.2: Install Docker-CE

You can find complete Docker-CE instructions/docs at: https://docs.docker.com/install/linux/docker-ce/ubuntu/

1. $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add –

2. $ sudo add-apt-repository “deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable”

Make sure that you enter the line above as ONE LINE in Linux 

3. $ sudo apt-get update

4. $ sudo apt-get install docker-ce docker-ce-cli containerd.io

2.1.3: Install Docker compose

1. $ sudo curl -L “https://github.com/docker/compose/releases/download/1.23.2/docker-compose-$(uname -s)-$(uname -m)” -o /usr/local/bin/docker-compose

2. $ sudo chmod +x /usr/local/bin/docker-compose

3. $ docker-compose version

4. $ date

5. Create a screenshot of the results of steps 1 – 4 and paste it into your Lab Report File.

2.1.4: Install business network pre-reqs

1. $ curl -O https://hyperledger.github.io/composer/latest/prereqs-ubuntu.sh

2. $ chmod u+x prereqs-ubuntu.sh

3. $ ./prereqs-ubuntu.sh

4. $ date

5. Create a screenshot of the results of steps 1 – 4 and paste it into your Lab Report File.

>>> Logout (use the gear icon in the upper right corner) and log back in before continuing.

2.1.5: Install GO language

The next step is to install the GO programming language. You’ll use GO to write and modify source code files for the class blockchain application.

1. $ sudo apt-get update

2. $ wget https://dl.google.com/go/go1.12.1.linux-amd64.tar.gz

3. $ tar xvf go1.12.1.linux-amd64.tar.gz

4. $ nano ~/.profile

5. In the nano editor, add the following 2 lines after the last line in the file:

export GOPATH=$HOME/go

export PATH=$PATH:$GOPATH/bin

6. Save your file and exit nano

7. $ source .profile

8. $ go version

9. $ date

10. Create a screenshot of the results of steps 1 – 9 and paste it into your Lab Report File.

Step 2.2: Install source code and set up business network

In this step you download and install the class application source code and set up the business network.

2.2.1: Forking and Cloning the trade-finance-logistics repository

1. In a browser (in Windows) go to: https://github.com/HyperledgerHandsOn/trade-finance-logistics

2. Sign up or log in

3. Click Fork

You type all the following commands in your Linux VM (at the command prompt.)

4. $ cd $GOPATH/src

5. $ git clone https://github.com/YOUR_GIT_ID/trade-finance-logistics.git

6. $ cd $GOPATH/src

7. $ mkdir -p github.com/hyperledger

8. $ cd github.com/hyperledger

9. $ git clone https://github.com/hyperledger/fabric.git -b release-1.1

10. $ cd fabric

11. EDIT FILES *****

a. $ nano Makefile

b. Find the line starts with CHAINTOOL_RELEASE (hint: use CTRL W to search)

c. Change the line you just found to this: CHAINTOOL_RELEASE=1.1.3

d. Find the line that starts with CHAINTOOL_URL (hint: use CRTL W to search)

e. Change the line you just found to this: CHAINTOOL_URL ?= https://hyperledger.jfrog.io/hyperledger/fabric-maven/org/hyperledger/fabric-chaintool/$(CHAINTOOL_RELEASE)/fabric-chaintool-$(CHAINTOOL_RELEASE).jar

NOTE: The line above should be on a SINGLE LONG LINE (don’t break up the line into multiple lines)

f. Save the file (hint: use CRTL O to write the file)

g. Exit the nano editor (hint: use CTRL X to exit)

h. $ nano images/javaenv/Dockerfile.in

i. Find the line that starts with && curl -fsSL https://nexus.hyperledger.org

j. Change the line you just found to this: && curl -fsSL https://repo1.maven.org/maven2/org/apache/maven/apache-maven/$MAVEN_VERSION/apache-maven-$MAVEN_VERSION-bin.tar.gz \

NOTE: The line above should be on a SINGLE LONG LINE (don’t break up the line into multiple lines)

k. Save the file (hint: use CRTL O to write the file)

l. Exit the nano editor (hint: use CTRL X to exit)

12. $ make docker

13. $ make configtxgen cryptogen

14. $ git clone https://github.com/hyperledger/fabric-ca.git

15. $ cd fabric-ca

16. $ make docker

17. $ date

18. Create a screenshot of the results of steps 1 – 17 and paste it into your Lab Report File.

2.2.2: Generate network cryptographic material

1. $ cd $GOPATH/src/trade-finance-logistics/network

2. $ nano ~/.profile

change last line to this (all on 1 line, not 2):

export PATH=$PATH:$GOPATH/bin:$GOPATH/src/github.com/hyperledger/fabric/build/bin:$GOPATH/src/github.com/hyperledger/fabric/build/docker/bin

3. Save file and exit nano

4. $ source ~/.profile

5. $ cryptogen generate –config=./crypto-config.yaml

6. $ date

7. Create a screenshot of the results of steps 1 – 6 and paste it into your Lab Report File.

2.2.3: Generate channel artifacts

1. $ cd $GOPATH/src/trade-finance-logistics/network

2. Execute the follow commands OR run the trade.sh script (AFTER step 9)

3. $ mkdir -p channel-artifacts

4. $ configtxgen -profile FourOrgsTradeOrdererGenesis -outputBlock ./channel-artifacts/genesis.block

5. $ configtxgen -profile FourOrgsTradeChannel -outputCreateChannelTx ./channel-artifacts/channel.tx -channelID tradechannel

6. $ configtxgen -profile FourOrgsTradeChannel -outputAnchorPeersUpdate ./channel-artifacts/ExporterOrgMSPanchors.tx -channelID tradechannel -asOrg ExporterOrgMSP

7. $ configtxgen -profile FourOrgsTradeChannel -outputAnchorPeersUpdate ./channel-artifacts/ImporterOrgMSPanchors.tx -channelID tradechannel -asOrg ImporterOrgMSP

8. $ configtxgen -profile FourOrgsTradeChannel -outputAnchorPeersUpdate ./channel-artifacts/CarrierOrgMSPanchors.tx -channelID tradechannel -asOrg CarrierOrgMSP

9. $ configtxgen -profile FourOrgsTradeChannel -outputAnchorPeersUpdate ./channel-artifacts/RegulatorOrgMSPanchors.tx -channelID tradechannel -asOrg RegulatorOrgMSP

OR (Instead of typing the commands above, the author provides a script to do it all)

1. $ ./trade.sh generate -c tradechannel

Troubleshooting help:

· If you encounter problems with your blockchain network in this lab or future labs, the ./trade.sh script may help you resolve them. If you are getting errors when trying to launch or interact with your network, try these commands at the Ubuntu command prompt:

./trade.sh down # If your network is up and running

./trade.sh clean

./trade.sh generate -c tradechannel 

./trade.sh up

2.2.4: Launch the sample trade network

There are two ways to launch the sample trade network, using the docker-compose command directly, or by using the author-supplied trade.sh shell script. We’ll use the shell script in most of our activities.

1. $ cd $GOPATH/src/trade-finance-logistics/network

2. $ ./trade.sh up

3. $ date

4. Create a screenshot of the results of steps 1 – 3 and paste it into your Lab Report File.

Step 2.3: Verifying your business network

The last step in this lab is to verify that your business network is up and running.

1. Open a new terminal window in your Vagrant Hyperledger VM. Click “Search your computer” (upper left corner icon), then type terminal, then click the Terminal icon.)

2. Enter the following command:

3. $ docker ps -a

4. $ date

5. Create a screenshot of the results of steps 2 – 4 and paste it into your Lab Report File.

6. The first column in the previous output is the “container-ID”. Find the container-ID for the orderer process, and use it for the following command: (Don’t type the “<” or “>” characters)

7. $ docker logs <container-ID>

8. Create a screenshot of the results of step 7 and paste that screenshot into your Lab Report File.

Section 3: Wrapping up

Once you have your network up and running, the only step to complete is to learn how to properly shutdown your business network.

1. Shut down the business network in Linux:

2. $ ./trade.sh down

3. Exit from your Linux Terminal command prompt(s) (i.e. close any open Terminal windows.)

4. $ exit

5. In Windows PowerShell, shut down your Hyperledger virtual machine:

9.  PS %HOME%\vagrant\Hyperledger> vagrant halt

10. Create a snapshot (NOT A SCREENSHOT) of your Ubuntu VM in VirtualBox. This allows you to easily restore to this point if you ever need to “undo” subsequent steps and return to a known point.

a. PS %HOME%\vagrant\Hyperledger> vagrant snapshot EndOfLab01

You should have 8 screenshots in your Lab Report File. Save your file and submit it in iLearn as a file attachment for the Lab 1 assignment.

Congratulations! You have complete lab 1.

Sociology homework help

Required Readings

Plummer, S.-B., Makris, S., & Brocksen, S. M. (Eds.). (2014a). Sessions: case histories. Baltimore, MD: Laureate International Universities Publishing. [Vital Source e-reader].
The Levy Family (pp. 15–16)

Knight, C. (2015). Trauma-informed social work practice: Practice considerations and challenges. Clinical Social Work Journal, 43(1), 25-37.

Thyer, B. A. (2013). Intervention with adults. In M. J. Holosko, C. N. Dulmus, & K. M. Sowers (Eds.), Social work practice with individuals and families: Evidence-informed assessments and interventions (pp. 147–176). Hoboken, NJ: Wiley.

Elliott, D. E., Bjelajac, P., Fallot, R. D., Markoff, L. S., & Reed, B. G. (2005). Trauma‐informed or trauma‐denied: Principles and implementation of trauma‐informed services for women. Journal of Community Psychology, 33(4), 461-477.

Required Media

Laureate Education (Producer). (2013b). Levy family: Episode 3 [Video file]. Retrieved from https://class.waldenu.edu
Accessible player –Downloads–Download Video w/CCDownload AudioDownload TranscriptCredit: Provided courtesy of the Laureate International Network of Universities.

Optional Resources

Use this link to access the MSW home page, which provides resources for your social work program.

 

Once you graduate and obtain your first job out of your Master of Social Work program, you may be asked to identify the gaps in services at your new agency. You may be asked to create a new group or help to identify a new evidence-based intervention that can be introduced to the clients. Understanding how to research the current literature, and then choose and evaluate an intervention, is an important component of being a successful social worker. For this course, you have researched new and interesting interventions that are currently being used with children, adolescents, adults, and the elderly. Further, you have explored the importance of connecting theory to practice.

For this Assignment, use will practice steps in Evidence-Based Practice. 1) You will think of a practice problem. 2) You then conduct a literature review on available research. 3) You will evaluate the evidence to determine which intervention to use. 4) You will consider client values and your clinical expertise. 5) You will think about what you hope the client gains from this intervention (i.e., decreased depression, increased quality of life, decreased PTSD symptoms) and consider how you might measure this change.

To prepare:

  • Choose a population of interest to you.
    • Children
    • Adolescents
    • Adults
    • Elderly/Aging
  • Choose a presenting problem (depression, family conflict, homelessness, etc.) related to the population of interest.
  • Conduct a literature review focused on the presenting problem within the population of interest.

By Day 7

Submit an 8- to 10-page scholarly paper supported with a minimum of six peer-reviewed articles as references. In the paper, you should:

  • Briefly describe the population and presenting problem you are focusing on for this assignment.
  • Provide a review of the articles you reviewed from this project and explain what you learned from conducting this research.
  • Briefly describe at least 2 evidence-based interventions currently used for your chosen population when addressing this particular problem. Provide supporting references when explaining the evidence behind the interventions.
  • Explain which of these interventions you might choose to use and why.
    • Consider client values and your clinical expertise and how those might affect your decision of which intervention to use.
  • Describe how you might apply the specific skills and techniques of the chosen intervention.
  • Briefly explain how you could measure the outcomes of this intervention.
  • Explain any cultural considerations that you need to take into account when working with this population or the particular presenting problem.
  • Discuss how the Code of Ethics applies when working with this particular presenting problem and population.
  • Explain how you would apply a trauma-informed lens when working with this population.

Support your Final Project with specific references to the resources. Be sure to provide full APA citations for your references.

The Final Project will be evaluated according to the Final Project Rubric, located below and in the Course Information area.

>Psychology homework help

Substantive response, Please further discussion. End response with a question.

APA format

175-265 words

Cite 1 reference

Respond to the following:

 

Carla Tyler

7:26 PM

Public health is affected by so many things that we often times do no realize or pay extra attention to. One factor socioeconomic status is one of the major factors that impact public health. It is determined by an individuals income, education, and occupation(Adler et al., 2002). Education is probably the most important factor of socioeconomic status because it provides individuals with more knowledge needed to improve public health. Income is also important in public health because it is used to determine what that patient is able to afford and if they need assistance with paying for services. In my community I see a lot of assistance with Public Health services. Different forms of discounts, free services, or recommendations to less expensive places to get assistance. When referring to public health and education it is important to mention that without the proper knowledge, not only will it affect one individual but an entire community. In my community when there is one, could be deadly, outbreak everything is shut down to keep everyone else safe. We recently had this happen when there was a brain-eating amoeba that killed one, until they found out where it was coming from(Johnson, 2020). We could not use the water and everyone was on edge because we did not know where it started.

Johnson, L. (2020).  CNNhttps://www.google.com/amp/s/amp.cnn.com/cnn/2020/09/26/us/brain-eating-amoeba-found-in-texas-water-supply-trnd/index.html

Adler, N., & Newman, K. (2002, March/April). Socioeconomic Disparities In Health: Pathways And Policies. Health Affairs , 21(2), . https://doi.org/10.1377/hlthaff.21.2.60

>Sociology homework help

Required Readings
SOCW 6361 Webliography
These websites will be required throughout the semester. Become familiar with these websites, especially when doing research for your assignments.
Jansson, B. S. (2018). Becoming an effective policy advocate: From policy practice to social justice (8th ed.). Pacific Grove, CA: Brooks/Cole Cengage Learning Series.
Chapter 13, “Troubleshooting the Implementation of Policies in Task 7” (pp. 460-487)
Lane, S. R., & Humphreys, N. A. (2011). Social workers in politics: A national survey of social work candidates and elected officials. Journal of Policy Practice, 10(3), 225–244.
Optional Resources
MSW home page
Use this link to access the MSW home page, which provides resources for your social work program.

Is social change ever easy? What barriers did you experience during your advocacy? What successes did you experience?

Over the past several weeks, you have analyzed a policy related to a social problem and have advocated for change. This week you submit your final report and present on your experience and the outcomes of your Social Change Project.

To Prepare
Write up a final report of your Social Change Project.
The final report should include your compiled response to assignments from Weeks 3, 6, 8, and 9. You are expected to update and revise the papers based on your instructor’s feedback. Please include a title page, headings, and a reference page.
Create a 5-7 minute PowerPoint presentation to present your Social Change project. Within this presentation:
Provide a brief synopsis of social problem and policy you identified.
Discuss what was accomplished over the past term and the change you made through your social change project.
Reflect on your experience. What did you learn? What would you do differently?
Explain how policy relates to clinical practice?
How will you apply skills advocacy skills as a clinical social worker?
Record presentation using Personal Capture (record audio, video, and screen)
See resources in Kaltura Media Uploader in left-hand navigation menu of classroom.
Create a Transcript of the presentation and/or edit closed-captioning of the recording to ensure your presentation is accessible to colleagues of differing abilities.

>Applied Sciences homework help

Answer questions 1-10 ONLY USED THE ARTICLE I PROVIDE

No need to write a reference. No APA Format Just answer the questions

1. What is the research problem/ statement?

2. What is the purpose of the study?

3. What is/ are the hypotheses?

4. What is the research design of this article?

5. What is the population and samples?

6. What are the study variables? Demographics, independent, dependent, research?

7.How was the data collected? Consent? IRB?

8. What are the measurements and scales used in the study?

9. What is the data analysis used?

10. What are the limitations of the study?

  • attachment

    Article.pdf

>English homework help

Essay 2: Analysis of Colonization in “Whereas” and from Unincorporated Territories: [guma’] and at least one reading of your choice assigned during weeks 1, 2, 3, 4, 5 or 6.

Worth 100 points

Word Count 1,250-2,500 words; not counting works cited

Formula   MLA

Requirements:

Select one of the following five prompts to complete your essay. You must include in the upper left hand corner of your paper, where your name and the date go, that this is Analytical Essay #2 and the letter of which prompt you have chosen to attempt. This could be written like “Analytical Essay #2B”

a. In both “Whereas” and from Unincorporated Territories: [guma’], we can see that there is engagement and resistance to writings of and by the US Federal Government—a colonizing force if there ever was one—as well as from interaction with individuals who are colonizers, whether they want or mean to be. How do Long Soldier and Perez and a poet of your choice who has been assigned to you during weeks 1-6 engage with the conventions of the contemporary and ancient colonial style and frameworks of writing in their own artistic writing?

And in no more than a page, explain how you might attempt your own resistance and why. If you have space, you may provide a brief example—no longer than a page.

b. We understand that the meaning of any given word or text is established through a continuing process of social interaction, negotiation, consensus, and dissent, so: how do Long Soldier, Perez and a poet of your choice who we’ve read during weeks 1-6 participate in this social construction of meaning under the restrictions of colonialism?

c. Long Solder, Perez and several other writers we’ve read so far allude to or discuss outright Generational Trauma, an atypical neurological disability related to Post Traumatic Stress Disorder—what is Generational Trauma, and analyze the discussion of it in these texts.

d. Analyze “Whereas” and from Unincorporated Territories: [guma’] and a poem of your choice from the work assigned to you during weeks 1-6 through a Post-colonial theoretical lens, define that lens with one or more of the nonfiction texts we’ve read on the subject of colonialism, decolonialization, postcolonialism, or sovereignty.

e. If you found a way to talk about “Whereas” and from Unincorporated Territories: [guma’] and another poem of your choice that I’ve assigned throughout week 1,2,3,4,5, or 6—you may do so.

  • attachment

    week-4-ColonialismPowerPoint2.pptx
  • attachment

    week-4-ColonialContexts-TribalSoverigntyinWesternandU.S.IndianLawbyDr.DavidJCarlsoninhisbookImaginingSovereignty.pdf
  • attachment

    week-4-EdwardSaid-s-fromCultureamdImperialism-inTNAoTaC2nded.pdf

>Psychology homework help

 Assignment Content

Review the PERIE model and process

Complete each of the following steps for your public health issue (cardiovascular disease)

  • Summarize your findings pertaining to cardiovascular disease
  • Explain epidemiology and its relationship to public health.
  • Describe the issue or disease.
  • Identify the underlying nature and cause of the issue or disease.
  • Analyze the uses and effects of demographic data, surveillance data, and vital statistics in public and community health.
  • Identify the demographics and effect of the issue or disease on the community.
  • Determine if the effects cross from community to state or national levels.
  • Analyze possible solutions for the issue or disease selected.
  • Identify possible solutions.
  • Explain how successful the solutions were.
  • Determine additional suggestions for treatment or resolution.
  • Include how the model served as a guide to understand the cause.

Cite 4 references

Citations and references must follow APA format

This assignment is a handout, not an essay. Short, brief, and to the point if possible. Content must fit on 1- 2 pages. (Landscape or Portrait) (No word limit)