need apa and references more than 500 words and follow instructions Other Assignment Help. need apa and references more than 500 words and follow instructions Other Assignment Help.
(/0x4*br />
Attached Files:
- research_paper_rubric.pdf (344.208 KB)
Your final research paper assignment is to write a research paper that explains how Information Technology (IT) promotes getting people who are affected by policies involved in the policy-making process. Cite specific examples.
To complete this assignment, upload a Microsoft Word document (.doc or .docx) that contains your complete paper. Remember that your paper, including your list of sources, must be in APA format, and you MUST cite your reference in the body of the paper using APA in-text citation format. A source is any paper or article that you will reference in your paper. If you need more information on APA format (for references list AND in-text citations), visit this reference: https://owl.english.purdue.edu/owl/resource/560/01…
This assignment must be YOUR OWN WORK! This is an individual assignment. Plagiarism detected in your work will result in a grade of zero for the entire paper.
Here are a few details about the overall research paper Please look at the attached rubric for details on how the paper will be graded.
You must reference two (2) peer-reviewed articles or papers that support your thesis statement. One of these papers may be from your annotated bibliography assignment. The final paper must be at least 500 words in length. (DO NOT exceed 500 words by a material amount. Excessive words or too many references will NOT impress me.)
So in summary, here are the research paper requirements:
2 peer reviewed resources (articles or papers) (1 may be from your annotated bibliography assignment)
Paper MUST address: How Information Technology (IT) promotes getting people who are affected by policies involved in the policy-making process. Cite specific examples.
Cited sources must directly support your paper (i.e. not incidental references)
At least 500 words in length (but NOT longer than 1000 words)
If you are not sure how to identify peer reviewed papers or articles, please visit the following resources:
http://diy.library.oregonstate.edu/using-google-sc…
http://libguides.gwu.edu/education/peer-reviewed-a…
need apa and references more than 500 words and follow instructions Other Assignment Help[supanova_question]
Discussion posts week 3 Writing Assignment Help
ENG 315: Professional Communications:
“Format and the Professional World”
Select ONE of the following:
- There are several different formats (emails, letters, reports, slides, and more) we will study this quarter. How important is the format in connecting with an audience? Defend your answer with relevant support.
- Consider a time when the way a message was delivered to you made a difference. What were your expectations about the message and how were they influenced or changed by the manner in which the information was delivered?
SOC 450: Solutions to Global Issues:
The Cost of Natural Resources
The economies and health of entire populations of the developing world are affected significantly when oil prices rise or when natural resources like coal and natural gas are used in abundance. What are the adverse effects of the use of these natural resources on populations and why do the economies of countries in places such as the Global South react to oil prices so severely compared to developed countries like the United States?
HIS 105: American History after 1865:
Each region (North, South, West) of the United States experienced the era of Industrialization (1865–1920) differently, with different issues and groups at the forefront.
Choose one of the following groups in the American Industrial Era (1865-1920):
- New European immigrants in the east
- African Americans in the “new south”
- Asian immigrants in the west
Then, in a full paragraph or two:
- Identify the main challenges facing this group during these industrial years.
- Describe at least one specific example that illustrates such challenge(s) and how the group dealt with it.
- Suggest lessons for our own time, such as positive or effective ways for some group today to deal with society’s barriers as well as the inevitable challenges of economic change.
- Identify the source(s) where you read about the group and its challenges.
SOC 105: Society and the Media:
“Body Image”
- Debate It – Take a position on this statement: Media cause individuals to develop negative and unrealistic body images. Support your views with two or three reasons and/or examples. (Cite any sources you referenced.)
PLEASE MAKE SURE ALL POSTS ARE DETAILED.
[supanova_question]
21.20 Ch 8 Program: Playlist (C)(programme on C) Programming Assignment Help
21.20 Ch 8 Program: Playlist (C)(programme on C)
You will be building a linked list. Make sure to keep track of both the head and tail nodes. You will be required to submit your algorithm for this assignment to the dropbox in D2L.
(1) Create three files to submit.
- PlaylistNode.h – Struct definition and related function declarations
- PlaylistNode.c – Related function definitions
- main.c – main() function
Build the PlaylistNode class per the following specifications. Note: Some functions can initially be function stubs (empty functions), to be completed in later steps.
- Private data members
- char uniqueID[50]
- char songName[50]
- char artistName[50]
- int songLength
- PlaylistNode* nextNodePtr
- Related functions
- CreatePlaylistNode()
- InsertPlaylistNodeAfter()
- Insert a new node after node
- SetNextPlaylistNode()
- Set a new node to come after node
- GetNextPlaylistNode()
- Return location pointed by nextNodePtr
- PrintPlaylistNode()
Ex. of PrintPlaylistNode output:
Unique ID: S123
Song Name: Peg
Artist Name: Steely Dan
Song Length (in seconds): 237
(2) In main(), prompt the user for the title of the playlist.
Ex:
Enter playlist's title:
JAMZ
(3) Implement the PrintMenu() function. PrintMenu() takes the playlist title as a parameter and outputs a menu of options to manipulate the playlist. Each option is represented by a single character. Build and output the menu within the function.
If an invalid character is entered, continue to prompt for a valid choice. Hint: Implement Quit before implementing other options. Call PrintMenu() in the main() function. Continue to execute the menu until the user enters q to Quit.
Ex:
JAMZ PLAYLIST MENU
a - Add song
r - Remove song
c - Change position of song
s - Output songs by specific artist
t - Output total time of playlist (in seconds)
o - Output full playlist
q - Quit
Choose an option:
(4) Implement “Output full playlist” menu option. If the list is empty, output: Playlist is empty
Ex:
JAMZ - OUTPUT FULL PLAYLIST
1.
Unique ID: SD123
Song Name: Peg
Artist Name: Steely Dan
Song Length (in seconds): 237
2.
Unique ID: JJ234
Song Name: All For You
Artist Name: Janet Jackson
Song Length (in seconds): 391
3.
Unique ID: J345
Song Name: Canned Heat
Artist Name: Jamiroquai
Song Length (in seconds): 330
4.
Unique ID: JJ456
Song Name: Black Eagle
Artist Name: Janet Jackson
Song Length (in seconds): 197
5.
Unique ID: SD567
Song Name: I Got The News
Artist Name: Steely Dan
Song Length (in seconds): 306
(5) Implement the “Add song” menu item. New additions are added to the end of the list.
Ex:
ADD SONG
Enter song's unique ID:
SD123
Enter song's name:
Peg
Enter artist's name:
Steely Dan
Enter song's length (in seconds):
237
(6) Implement the “Remove song” function. Prompt the user for the unique ID of the song to be removed.
Ex:
REMOVE SONG
Enter song's unique ID:
JJ234
"All For You" removed
(7) Implement the “Change position of song” menu option. Prompt the user for the current position of the song and the desired new position. Valid new positions are 1 – n (the number of nodes). If the user enters a new position that is less than 1, move the node to the position 1 (the head). If the user enters a new position greater than n, move the node to position n (the tail). 6 cases will be tested:
- Moving the head node
- Moving the tail node
- Moving a node to the head
- Moving a node to the tail
- Moving a node up the list
- Moving a node down the list
Ex:
CHANGE POSITION OF SONG
Enter song's current position:
3
Enter new position for song:
2
"Canned Heat" moved to position 2
(8) Implement the “Output songs by specific artist” menu option. Prompt the user for the artist’s name, and output the node’s information, starting with the node’s current position.
Ex:
OUTPUT SONGS BY SPECIFIC ARTIST
Enter artist's name:
Janet Jackson
2.
Unique ID: JJ234
Song Name: All For You
Artist Name: Janet Jackson
Song Length (in seconds): 391
4.
Unique ID: JJ456
Song Name: Black Eagle
Artist Name: Janet Jackson
Song Length (in seconds): 197
(9) Implement the “Output total time of playlist” menu option. Output the sum of the time of the playlist’s songs (in seconds).
Ex:
OUTPUT TOTAL TIME OF PLAYLIST (IN SECONDS)
Total time: 1461 seconds
Note..I found one solve on Chegg, but when I compile I found more than 20 errors so plz sir/mam make sure the program will run
[supanova_question]
Anthropology writing essay -09 Writing Assignment Help
Week 3 Assignment
Word count: 700
Only need to Read chapter 6 !!!, Reading: https://drive.google.com/file/d/1iaPAW3ng2t-5YAtry…
For this week’s assignment, write a 1 to 1.5 page paper (single-spaced, 12 pt font, 1 inch margins) on the Upper Paleolithic cave art. Use a site such as Chauvet Cave as a specific example, but include comparisons to other sites such as Lascaux and Altmira. Select two of the main galleries (or wall panels) to discuss in detail:
1. What kinds of depictions were created and how were they made? How old are these?
2. Consider such attributes as spatial layouts, animal forms compared to other designs, color selection, or other characteristics of the illustrations. What do these suggest about the intellect or thought process of the humans that created them?
3. What functions have been identified for these paintings? That is, why were they painted and how were they used?
4. What impact did the discovery of very early cave art on Sulawesi (Indonesia) have on our understanding of Chauvet?
Lascaux: http://archeologie.culture.fr/lascaux/fr?lng=en#/en/00.xml
[supanova_question]
Socio Historicity and Crime Humanities Assignment Help
For this assignment, you will examine 2 crimes within particular social moments and relate them to each other. Anthony Sowell (Cleveland Strangler) and Julian Assange (WikiLeaks founder) have both found themselves involved with the U.S. criminal justice system. Videos related to each are attached.
What I am looking for is your ability to relate socio-historicity to the two events which eventually connect them to each other. As with that, I need you to use your critical thinking skills and apply the concept of “sociological imagination”–think beyond the specific (individual) incidents.
It should resemble the fluid diagram (with arrows going everywhere). What is it about the U.S. culture that allows for the disparate treatment between street-level and white collar criminals? Please use a blank sheet(s) of paper to show the connections–you must have at least 10. Then take a picture, scan, etc. of the image and upload it as your submission
I need one page written discussion and one diagram of the written discussion
https://www.youtube.com/watch?time_continue=2&v=EWddeOkjXkA
https://www.youtube.com/watch?v=F8pILM3hHsA
[supanova_question]
[supanova_question]
Evaluate a mutual fund using the Fama-French Five-Factor model. Compare the results to that of exchange-traded funds (ETFs) with similar objectives Writing Assignment Help
In the term project, you will evaluate a mutual fund using the Fama-French Five-Factor model. You will compare the results to that of exchange-traded funds (ETFs) with similar objectives. You are expected to write a paper comprising the following parts:
• Introduction The introduction briefly presents the problem you are studying in, concisely describes your data and the method of analysis, and summarizes your main conclusions. • Discussion of Relevant Literature and Economic Theory This section describes closely related previous studies on your topic and summarizes any relevant economic theory. The length of this section depends on the scope of the paper; still the literature review, might be lengthy, but for a term paper this section might be short. • Data Description This section provides the details of the data sources, any transformations you have done to the data (for example, changing the units of some variables), gives a table of summary statistics (means and standard deviations) of the variables, and provides scatterplots and/or other relevant plots of the data. • Empirical Results This section provides the main empirical results in the paper. Conventionally, regression results are presented in tabular form, with footnotes clearly explaining the entries; Please consider Tables 7.1, 8.2, 8.3, 9.1, and 9.2 in the Textbook (SW) as an example. The initial table of results should present the main results; sensitivity analysis using alternative specifications can be presented in additional columns in that table or in subsequent tables. The text should provide a careful discussion of the results, including assessments both of statistical significance and of economic significance, that is, the magnitude of the estimated relations in a real-world sense. • Summary and Discussion This section summarizes your main empirical findings and discusses their implications for the original question of interest.
Evaluate a mutual fund using the Fama-French Five-Factor model. Compare the results to that of exchange-traded funds (ETFs) with similar objectives Writing Assignment Help[supanova_question]
Movie Analysis Humanities Assignment Help
Please Watch this three movies and write three separate papers analyzing and summarizing each movie. The three movies are:
1. The Brain on Drugs
2. A Beautiful Mind
3. The Note Book
4. One Flew Over the Cuckoo’s nest.
5. The Soloist
Each Paper must be 3-5 page summary and analysis of this three movies separately. Write then summary and analysis in APA format.
In the summary include some of the psychological aspect of the movie, for example some of the psychological diagnosis of the character. If they had depression, bipolar disorder, or how the psychological diagnosis impacts the characters.
Please put each movie in a separate word document not one word document together.
[supanova_question]
rewrite the paragraphs completely Writing Assignment Help
rewrite only the paragraphs in red
rewrite only the paragraphs in red
few paragraph rewrite. completely rewrite with little to no similarity index.
few paragraph rewrite. completely rewrite with little to no similarity index.
rewrite only the paragraphs in redrewrite only the paragraphs in redrewrite only the paragraphs in redrewrite only the paragraphs in redrewrite only the paragraphs in redrewrite only the paragraphs in redrewrite only the paragraphs in redrewrite only the paragraphs in redrewrite only the paragraphs in redrewrite only the paragraphs in redrewrite only the paragraphs in redrewrite only the paragraphs in redrewrite only the paragraphs in redrewrite only the paragraphs in redrewrite only the paragraphs in redrewrite only the paragraphs in redrewrite only the paragraphs in red
[supanova_question]
Examine agency and employment relationships Business Finance Assignment Help
Cardigan History
LS311-5: Examine agency and employment relationships
GEL 1.02: Demonstrate college-level communication through the composition of original materials in Standard English.
The Cardigan family has made a name for themselves in the
sweater industry whereby they have designed sweaters for a variety of
uses and for a wide target audience ranging from toddlers to business
professionals. Cassandra, whom everyone calls Cassie, is the CEO of
CARDWARE Inc., Camoni is the spokesperson for the sweater line, and
Candie models the lines in the professional sphere. They often use their
mother, Camille, as a business consultant for input about various new
ideas and marketing because she was the manager and agent of her son’s
glove company. Cora and Caley, Camille’s two youngest daughters from her
second failed marriage to Bo Jenkins, are co-office managers of their
headquarters located in Silkadonia.
CARDWARE is growing by leaps and bounds. It has now opened
10 new stores nationwide under the name “The Sporty One.” It has been
agreed by the Board of Directors at CARDWARE Inc. that each store shall
have a general manager and assistant manager who both were to act as
sales persons and one additional sales person. The slogan the store
advertises its sports ware with is “You don’t have to be an athlete to
look and feel like one.” The current sports ware that “The Sporty One”
carries shows a clothing distribution of 60% for females and 40% of its
line is for males. However, it would eventually like for it to be a
50/50 distribution. The Cardigans research has demonstrated that the
trend has been more female than male shoppers. Further, following the
marketing theory of many high end clothing stores, CARDWARE prefers
slender, young employees to work for it, so that the clothing line can
keep with the image of being sporty.
Petunia Rotunda, a middle aged, slightly plump woman saw an
ad online for a salesperson for The Sporty One and applied for the
position. The ad read as follows:
WANTED: Salesperson experienced in retail sales or
marketing preferred, energetic, youthful, athletic, and able to “sport”
the clothing lines of The Sporty One with style. The Sporty One is a
division of CARDWARE Inc. and proud to be an Equal Opportunity Employer.
Petunia has had 5 years of retail experience working in a
garden shop that did have some flannel shirts and aprons as well as
gardening gloves for sale. Noah Dahl, a college graduate in marketing
also saw the ad and applied for the salesperson position at The Sporty
One. Noah, a slender racquetball player has not had any retail
experience but has had customer service experience for an online gaming
company.
After interviewing both applicants, CARDWARE’s General
Manager, Chloe, one of the cousins of the Cardigan clan has decided to
hire Noah. Petunia was outraged claiming that she should have been hired
and that she has been discriminated against based on her age. CARDWARE
contends that Noah was more qualified as per the advertisement as well
as company image and future plans for the company; age had nothing to do
with it.
Noah began work the following week. Still angry, Petunia
visited The Sporty One. She began to harass Noah to the point where
other customers started to leave the store. Having had enough insults,
Noah grabbed Petunia by the arm and shoved her towards the door. She
stumbled and ran into one of the clothing racks and thereafter knocked
over 92-year-old Hetty Whitestone who was passing by the mall store.
Hetty suffered a concussion and died.
Using the above facts given, please label with headings and discuss the following in this order:
PART I:
- Did CARDWARE have genuine BFOQs (Bona Fide Occupational Job Qualifications) in its ad?
- Do not forget to review the company’s slogan as given in the above facts.
- Be sure to discuss Petunia’s point of view as well as CARDWARE’s position and defenses.
- Use legal authority to support your position as well.
PART II:
- If Petunia brings a lawsuit based on negligence against CARDWARE and
The Sporty One, will CARDWARE be responsible for Noah’s behavior? If
so, under what theory? - What defenses might CARDWARE assert?
- If Hetty Whitestone’s estate claims that CARDWARE should be responsible for Hetty’s death, will it?
- What defenses might CARDWARE utilize?
Paper Submissions:
APA manuscript style dictates how your paper should appear
on the page. For more information on APA style, visit the following
website:
American Psychological Association. (n.d.). Frequently Asked Questions About APA Style®. Retrieved June 10, 2016, from http://www.apastyle.org/faqs.html
There are two types of APA manuscripts: Copy manuscripts
(those submitted for publication) and final manuscripts (those not
submitted for publication). Copy manuscripts are much more formal and
may contain multiple sections. Specifically, they will have an abstract
(a 1-paragraph summary of the paper). The papers you produce for most
classes will be final manuscripts. Unlike copy manuscripts, final
manuscripts do not, unless specifically required by an instructor,
require an abstract.
They do include:
- A title page
- The paper itself (the discussion)
- A references page
A title page contains three items: A running head (a short
version of the title), the paper’s title, and the author’s name.
Traditionally, the author’s affiliation (the university he or she
attends or works for) appears below the author’s name; however, many
college instructors prefer students to put the course and section number
in this place (because we all know which institution we are attending).
The running title appears in the top right corner of every page,
including the title page, right before the page number. The title, the
author’s name, and the author’s affiliation (or course and section
number) appear in the center of the title page.
Additional Helpful Assignment Reminders:
Be sure to avoid the use of first person. Instead convey your research utilizing third person.
- Keep all font color consistent throughout. If you copy and paste a
link and it is in blue, hover your mouse over the link, right click, and
select “REMOVE HYPERLINK” to keep the font color black like the rest of
your submission. - Use size 12 Times New Roman font.
- Utilize in-text citations. If a reference is listed in your
reference page, it must be included within the body of your submission
as well. - Prepare an APA formatted reference page.
[supanova_question]
communication week 12 Business Finance Assignment Help
our focus is on compassion toward the self and campaigns intended to spread compassion to others. For this week’s journal please peruse the websites below, watch the video, and answer the following questions. 500 words min.
Video:
http://www.ted.com/talks/daniel_goleman_on_compassion?language=en
Websites to view:
http://www.chopra.com/articles/spreading-compassio…
https://topnonprofits.com/lists/best-nonprofit-web…
Questions.
1) What are your thoughts about the Ted Talk presentation?
2) Do you feel humans are inherently designed to be compassionate (look into mirror neurons)? Why? Why not?
3) Are there specific cultures that are more compassionate than others? Why do you think this is? Provide examples.
4) Assuming and hoping you want to – How can you better practice self-compassion?
5) Which of the websites (comment on one provided, or feel free to find a non-profit website not on the list) do you feel does the best job at motivating others to practice compassion? Why?
6) What role can you have in spreading compassion to others?
*Once you have posted to the discussion board please comment on at least 5 classmates’ post. Since your classmates’ post will include responses to multiple questions you may choose which question you respond to. As always, please be respectful and open-minded with your responses.
Once you have responded to the prompts and also to 5 of your classmates within the discussion board, put all of what you have wrote on one document and submit this through the related Turnitin link. You do not need a cover page, header, title, etc. Since you are submitting this through the Turnitin link, I already know who it is from. The first sentence should be the start of your response. Please do not include the question. You can include the question numbers though.
Respond to each student response with 100 words paragraph. Write the response in first person as if you the one responding directly. ( Student responses are attached)
[supanova_question]
https://anyessayhelp.com/
Questions.
1) What are your thoughts about the Ted Talk presentation?
2) Do you feel humans are inherently designed to be compassionate (look into mirror neurons)? Why? Why not?
3) Are there specific cultures that are more compassionate than others? Why do you think this is? Provide examples.
4) Assuming and hoping you want to – How can you better practice self-compassion?
5) Which of the websites (comment on one provided, or feel free to find a non-profit website not on the list) do you feel does the best job at motivating others to practice compassion? Why?
6) What role can you have in spreading compassion to others?
*Once you have posted to the discussion board please comment on at least 5 classmates’ post. Since your classmates’ post will include responses to multiple questions you may choose which question you respond to. As always, please be respectful and open-minded with your responses.
Once you have responded to the prompts and also to 5 of your classmates within the discussion board, put all of what you have wrote on one document and submit this through the related Turnitin link. You do not need a cover page, header, title, etc. Since you are submitting this through the Turnitin link, I already know who it is from. The first sentence should be the start of your response. Please do not include the question. You can include the question numbers though.
Respond to each student response with 100 words paragraph. Write the response in first person as if you the one responding directly. ( Student responses are attached)