SlideShare a Scribd company logo
1 of 14
PSYC 100 1
Written Assignment - Webliography
Points Possible: 100
Due Date: July 15, 2016 by 11:59 p.m. Late assignments will
not be accepted. Please do not
ask for an exception; the answer will be no. (Be sure you
upload the correct file to the course
and that the file is saved as either a .doc, .docx or PDF file.
For this assignment, you are required to prepare a
"webliography," (i.e. an online, annotated
bibliography of websites). This assignment will give you an
opportunity to research one single
topic from Chapter 3. Chapter 15, Chapter 7, or Chapter 9. A
topic is VERY SPECIFIC not
general. For example, you can select PTSD but not Anxiety
Disorders because it is too general.
Use the Internet to do the research. There are many single
topics to choose from in the permitted
chapters. The goal of this assignment is to select websites that
provide information on the topic
and then evaluate (critically evaluate) the information
presented.
A webliography is an annotated bibliography that pertains to
websites only not books or specific
articles.
1. Search the Internet and find eight (8) websites focused on the
topic you selected.
These websites should be what you feel are high quality Internet
resources. Do not
use resource databases that are online. Do not refer to research
articles. Find
websites that provide information on the topic you selected.
Do not use any wikis
either.
2. The depth of the webliography is more important than its
breadth. Do not simply
create a hotlist. Rather, organize a useful, annotated list that
showcases the eight
(8) websites you feel are the most important on the Internet
related to the topic
you selected.
3. Evaluate the information on each of the websites you
selected. For example, does
the information coincide with information presented in the
textbook? If so, provide
an example. Does the information on the website provide
scholarly references to
support the information shared on the website? Was the
information specific
enough to be useful to the reader?
4. Below the evaluation information, include the URL, a brief
description of the
website, date the website was last updated, and the author (or
owner) of the
information you evaluated.
5. Each entry should be about 10 to 14 sentences in length. List
the entries in
alphabetical order based on the last name of the website owner
or the author of the
information. If you cannot find this information, then reference
it as “No Author”
in the list.
PSYC 100 2
Please remember, a major part of this assignment is evaluating
all the information on the website.
Not all information on the Internet is reliable or valid.
On this and the next page you will find the grading rubric and
an example of an entry for a
Webliography. Keep in mind that I did I used a specific topic
and it is a real world context.
Webliography = 100 points
Evaluation Areas Points
All 8 entries are complete:
Author’s name (if identified)
Title of web page
Date published/last updated
URL <http://www>
32
Entry includes a concise evaluation and summary
of the website information related to your specific
topic.
48
Format, spelling, grammar:
1. Your name in the upper right-hand corner
2. Entries are double-spaced
3. Entries are in alpha order by website name
4. One-inch margins on all sides
5. Font size is 12 point
6. Font style is Times Roman
7. Document is saved as a .doc, .docx, or PDF
(no other formats allowed.
8. Write in full sentences. Double-check for
subject and verb agreement and spelling.
9. Use appropriate grammar rules.
20
Total points possible 100
PSYC 100 3
Topic: Reliability of Eyewitness Testimony
(This is an example of one webliography entry. However,
because this is an example only, I
selected a topic that is NOT relevant to the chapters assigned
for this assignment. )
1. Live Science
http://www.livescience.com/16194-crime-eyewitnesses-
mistakes.html
Article Title: Eyewitness Testimony Can Be Tragically
Mistaken
Authors: Stephanie Pappas and Jeanna Bryner
Date: September 22, 2011
Date Website Last Updated: Missing
This is a website that seems to be the home of an online
magazine. The article was
written by two journalists that work for the magazine. The
main focus of the article is the
unreliability of eyewitness testimony. While the authors quote
two psychologists as
experts to also provide empirical evidence as well. They
present evidence of the
unreliability using both historical and empirical evidence from
several psychological
experiments. The references are available on the site. This
information coincides with
the information in our textbook and seems valid. For example,
both the website and
textbook stated that the emotion a person experiences during a
traumatic event and the
ways the human memory system combines other memories can
easily distort recall and,
at the same time, help people feel certain about what they think
they saw.
http://www.livescience.com/16194-crime-eyewitnesses-
mistakes.html
CEE 213—Deformable Solids The Mechanics Project
Arizona State University CP 2—Properties of Areas
1
Computing Project 2
Properties of Areas
The computing project Properties of Areas concerns the
computation of various properties
of cross sectional areas. In each of our theories (i.e., axial bar,
torsion, and beams) we arrive
at a point where we need certain properties of the cross section
to advance the analysis. For
the axial bar we needed only the area; for torsion we needed the
polar moment of inertia;
for the beam we will need moment of inertia of the cross section
about the centroid of the
cross section.
We can develop an algorithm that allows the computation of all
of the properties of a cross
section if the cross section can be described as a polygon. The
algorithm is built on formu-
las for the properties of a triangle. What that program will do is
create a triangle from the
origin and the two vertex nodes associated with a side of the
polygon. Whether this polygon
adds or subtracts from the accumulating properties will be
determined from the vectors
defining the sides of the polygon (see the CP Notes for further
clarification). If you loop
over all of the sides, the end result will be the properties of the
entire cross section.
The general steps are as follows:
1. Develop a routine that allows you to describe the cross
section with a sequence of
points numbered in a clockwise fashion starting with 1. The last
point should be a
repeat of the first one in order to close the polygon. Some
suggestions:
a. Store the (x,y) coordinates of each point in a single array
x(N,2), where N
is the number of points required to describe the cross section
(including
the repeat of the first point as the last point) and the first
column contains
the x values of the coordinate and the second column contains
the values
of the coordinate and the second column contains the y value.
b. It will eventually be a good idea to put the input into a
MATLAB function
and call the function from your main program. That way you
can build up
a library of cross sectional shapes without changing your main
program.
c. If you need a negative area region (for a cutout section like in
an open
tube) then number the points in that region in a counter-
clockwise fashion.
Just keep numbering the vertices in order (no need to start over
for the
negative areas).
2. Develop a routine to loop over all of the edges of the polygon
and compute (and
accumulate) the contributions of the triangle defined by the
vectors from the origin
to the two vertices of the current side of the triangle (that gives
two sides) and the
CEE 213—Deformable Solids The Mechanics Project
Arizona State University CP 2—Properties of Areas
2
vector that points from the first to the second vertex (in
numerical order). Calculate
the area, centroid, and outer-product contributions to the
properties (see the CP
Notes for clarification of this issue).
3. Compute the orientation of the principal axes of the cross
section using the eigen-
value solver in MATLAB (eig) on the moment of inertia matrix
J. See the CP
Notes for more information on this task.
4. Create an output table (print into the Command Window)
giving the relevant cross
sectional properties. Develop a routine to plot the cross section.
Include the loca-
tion of the centroid of the cross section in the graphic along
with lines defining the
principal axes.
5. Generate a library of cross sections, including some simple
ones (e.g., a rectangular
cross sections) to verify the code. Include in your library as
many of the following
cross sections as you can get done:
a. Solid rectangle with width b and height h.
b. Solid circle of radius R.
c. Rectangular tube with different wall thickness on top and
bottom.
d. I-beam with flange width b, web depth d, flange thickness tf,
and web
thickness tw.
e. Angle section with different leg lengths and leg thicknesses.
f. Circular tube with outside radius R and wall thickness t.
g. T-beam.
6. Use the program to explore aspects of the problem. For
example,
a. Why is it more efficient to use an open circular tube for
torsion rather than
a solid cylinder?
b. For beam bending we can control deflections and reduce
stresses with a
large moment of inertia about the axis of bending. Show the
trade-offs
available in an I-beam when you can select different web and
flange depths
and thicknesses.
c. Explore any other feature of the problem that you find
interesting.
Write a report documenting your work and the results (in accord
with the specification
given in the document Guidelines for Doing Computing
Projects). Post it to the Critviz
website prior to the deadline. Note that there is only one
submission for this problem (the
final submission).
CEE 213—Deformable Solids The Mechanics Project
Arizona State University CP 2—Properties of Areas
3
Please consult the document Evaluation of Computing Projects
to see how your project
will be evaluated to make sure that you can get full marks. Note
that there is no peer review
process for reports in this course.
PSYC 100 Webliography Generator

More Related Content

Similar to PSYC 100 Webliography Generator

INF 103 Future Our Mission/newtonhelp.com
INF 103 Future Our Mission/newtonhelp.comINF 103 Future Our Mission/newtonhelp.com
INF 103 Future Our Mission/newtonhelp.comrock1234548
 
INF 103 Course Success is a Tradition / newtonhelp.com
INF 103 Course Success is a Tradition / newtonhelp.comINF 103 Course Success is a Tradition / newtonhelp.com
INF 103 Course Success is a Tradition / newtonhelp.comrock1234599
 
INF 103 Future Our Mission/newtonhelp.com
INF 103 Future Our Mission/newtonhelp.comINF 103 Future Our Mission/newtonhelp.com
INF 103 Future Our Mission/newtonhelp.comrock1234546
 
Comp 220 ilab 7 of 7
Comp 220 ilab 7 of 7Comp 220 ilab 7 of 7
Comp 220 ilab 7 of 7helpido9
 
INF 103 Course Success is a Tradition / newtonhelp.com
INF 103 Course Success is a Tradition / newtonhelp.comINF 103 Course Success is a Tradition / newtonhelp.com
INF 103 Course Success is a Tradition / newtonhelp.comrock123450
 
12 Lab 1 Electric Charge and Electric Interactions
12  Lab 1 Electric Charge and Electric Interactions 12  Lab 1 Electric Charge and Electric Interactions
12 Lab 1 Electric Charge and Electric Interactions AnastaciaShadelb
 
12 Lab 1 Electric Charge and Electric Interactions
12  Lab 1 Electric Charge and Electric Interactions 12  Lab 1 Electric Charge and Electric Interactions
12 Lab 1 Electric Charge and Electric Interactions BenitoSumpter862
 
MBA 504 Module Four Power BI Assignment User Manual M
MBA 504 Module Four Power BI Assignment User Manual  MMBA 504 Module Four Power BI Assignment User Manual  M
MBA 504 Module Four Power BI Assignment User Manual MAbramMartino96
 
Comp 220 ilab 7 of 7
Comp 220 ilab 7 of 7Comp 220 ilab 7 of 7
Comp 220 ilab 7 of 7solutionjug4
 
· ;,Individual Research Paper TopicsDiscussion TopicIm Done.docx
· ;,Individual Research Paper TopicsDiscussion TopicIm Done.docx· ;,Individual Research Paper TopicsDiscussion TopicIm Done.docx
· ;,Individual Research Paper TopicsDiscussion TopicIm Done.docxoswald1horne84988
 
JAE GRC3 Lunar Simulant
JAE GRC3 Lunar Simulant JAE GRC3 Lunar Simulant
JAE GRC3 Lunar Simulant Dylan Walsh
 
Drexel University, College of Engineering2015-2016 Academic Year.docx
Drexel University, College of Engineering2015-2016 Academic Year.docxDrexel University, College of Engineering2015-2016 Academic Year.docx
Drexel University, College of Engineering2015-2016 Academic Year.docxjacksnathalie
 
Page 1 of 3 Literature Review Assignment The prima.docx
Page 1 of 3  Literature Review Assignment  The prima.docxPage 1 of 3  Literature Review Assignment  The prima.docx
Page 1 of 3 Literature Review Assignment The prima.docxbunyansaturnina
 
Directions for Homework Paper All homework papers must be typed d.docx
Directions for Homework Paper All homework papers must be typed d.docxDirections for Homework Paper All homework papers must be typed d.docx
Directions for Homework Paper All homework papers must be typed d.docxduketjoy27252
 

Similar to PSYC 100 Webliography Generator (14)

INF 103 Future Our Mission/newtonhelp.com
INF 103 Future Our Mission/newtonhelp.comINF 103 Future Our Mission/newtonhelp.com
INF 103 Future Our Mission/newtonhelp.com
 
INF 103 Course Success is a Tradition / newtonhelp.com
INF 103 Course Success is a Tradition / newtonhelp.comINF 103 Course Success is a Tradition / newtonhelp.com
INF 103 Course Success is a Tradition / newtonhelp.com
 
INF 103 Future Our Mission/newtonhelp.com
INF 103 Future Our Mission/newtonhelp.comINF 103 Future Our Mission/newtonhelp.com
INF 103 Future Our Mission/newtonhelp.com
 
Comp 220 ilab 7 of 7
Comp 220 ilab 7 of 7Comp 220 ilab 7 of 7
Comp 220 ilab 7 of 7
 
INF 103 Course Success is a Tradition / newtonhelp.com
INF 103 Course Success is a Tradition / newtonhelp.comINF 103 Course Success is a Tradition / newtonhelp.com
INF 103 Course Success is a Tradition / newtonhelp.com
 
12 Lab 1 Electric Charge and Electric Interactions
12  Lab 1 Electric Charge and Electric Interactions 12  Lab 1 Electric Charge and Electric Interactions
12 Lab 1 Electric Charge and Electric Interactions
 
12 Lab 1 Electric Charge and Electric Interactions
12  Lab 1 Electric Charge and Electric Interactions 12  Lab 1 Electric Charge and Electric Interactions
12 Lab 1 Electric Charge and Electric Interactions
 
MBA 504 Module Four Power BI Assignment User Manual M
MBA 504 Module Four Power BI Assignment User Manual  MMBA 504 Module Four Power BI Assignment User Manual  M
MBA 504 Module Four Power BI Assignment User Manual M
 
Comp 220 ilab 7 of 7
Comp 220 ilab 7 of 7Comp 220 ilab 7 of 7
Comp 220 ilab 7 of 7
 
· ;,Individual Research Paper TopicsDiscussion TopicIm Done.docx
· ;,Individual Research Paper TopicsDiscussion TopicIm Done.docx· ;,Individual Research Paper TopicsDiscussion TopicIm Done.docx
· ;,Individual Research Paper TopicsDiscussion TopicIm Done.docx
 
JAE GRC3 Lunar Simulant
JAE GRC3 Lunar Simulant JAE GRC3 Lunar Simulant
JAE GRC3 Lunar Simulant
 
Drexel University, College of Engineering2015-2016 Academic Year.docx
Drexel University, College of Engineering2015-2016 Academic Year.docxDrexel University, College of Engineering2015-2016 Academic Year.docx
Drexel University, College of Engineering2015-2016 Academic Year.docx
 
Page 1 of 3 Literature Review Assignment The prima.docx
Page 1 of 3  Literature Review Assignment  The prima.docxPage 1 of 3  Literature Review Assignment  The prima.docx
Page 1 of 3 Literature Review Assignment The prima.docx
 
Directions for Homework Paper All homework papers must be typed d.docx
Directions for Homework Paper All homework papers must be typed d.docxDirections for Homework Paper All homework papers must be typed d.docx
Directions for Homework Paper All homework papers must be typed d.docx
 

More from potmanandrea

Select a foreign country and analyze its monetary system. Formatted .docx
Select a foreign country and analyze its monetary system. Formatted .docxSelect a foreign country and analyze its monetary system. Formatted .docx
Select a foreign country and analyze its monetary system. Formatted .docxpotmanandrea
 
Select a company of your choice. Study the company’ CEO and determ.docx
Select a company of your choice. Study the company’ CEO and determ.docxSelect a company of your choice. Study the company’ CEO and determ.docx
Select a company of your choice. Study the company’ CEO and determ.docxpotmanandrea
 
Seeing” Social MovementsAn important component of studying social.docx
Seeing” Social MovementsAn important component of studying social.docxSeeing” Social MovementsAn important component of studying social.docx
Seeing” Social MovementsAn important component of studying social.docxpotmanandrea
 
Seeking someone that is great at writing papers!  Must be familar .docx
Seeking someone that is great at writing papers!  Must be familar .docxSeeking someone that is great at writing papers!  Must be familar .docx
Seeking someone that is great at writing papers!  Must be familar .docxpotmanandrea
 
See comments at the right of the data set..docx
See comments at the right of the data set..docxSee comments at the right of the data set..docx
See comments at the right of the data set..docxpotmanandrea
 
Select a company you are familiar with. Imagine that this company is.docx
Select a company you are familiar with. Imagine that this company is.docxSelect a company you are familiar with. Imagine that this company is.docx
Select a company you are familiar with. Imagine that this company is.docxpotmanandrea
 
Select a contemporary issue that is of interest to you.Create .docx
Select a contemporary issue that is of interest to you.Create .docxSelect a contemporary issue that is of interest to you.Create .docx
Select a contemporary issue that is of interest to you.Create .docxpotmanandrea
 
see the attached filesThe QuestionIs management in the publ.docx
see the attached filesThe QuestionIs management in the publ.docxsee the attached filesThe QuestionIs management in the publ.docx
see the attached filesThe QuestionIs management in the publ.docxpotmanandrea
 
See discussions, stats, and author profiles for this publicati.docx
See discussions, stats, and author profiles for this publicati.docxSee discussions, stats, and author profiles for this publicati.docx
See discussions, stats, and author profiles for this publicati.docxpotmanandrea
 
See details below with a minimum of 8 scholarly referencesKey .docx
See details below with a minimum of 8 scholarly referencesKey .docxSee details below with a minimum of 8 scholarly referencesKey .docx
See details below with a minimum of 8 scholarly referencesKey .docxpotmanandrea
 
See attatched for part 1Part 2Develop a 10- to 12-slide Micr.docx
See attatched for part 1Part 2Develop a 10- to 12-slide Micr.docxSee attatched for part 1Part 2Develop a 10- to 12-slide Micr.docx
See attatched for part 1Part 2Develop a 10- to 12-slide Micr.docxpotmanandrea
 
SEE ATTACHMENTRefer to the Intervention Series #38 Anthony” vid.docx
SEE ATTACHMENTRefer to the Intervention Series #38 Anthony” vid.docxSEE ATTACHMENTRefer to the Intervention Series #38 Anthony” vid.docx
SEE ATTACHMENTRefer to the Intervention Series #38 Anthony” vid.docxpotmanandrea
 
SEE Attachment for subject MatterMust be eight to ten double-spa.docx
SEE Attachment for subject MatterMust be eight to ten double-spa.docxSEE Attachment for subject MatterMust be eight to ten double-spa.docx
SEE Attachment for subject MatterMust be eight to ten double-spa.docxpotmanandrea
 
See attachment for my proposal and exampleUse the completed prio.docx
See attachment for my proposal and exampleUse the completed prio.docxSee attachment for my proposal and exampleUse the completed prio.docx
See attachment for my proposal and exampleUse the completed prio.docxpotmanandrea
 
Securities Fraud Please respond to the followingFrom the e-Acti.docx
Securities Fraud Please respond to the followingFrom the e-Acti.docxSecurities Fraud Please respond to the followingFrom the e-Acti.docx
Securities Fraud Please respond to the followingFrom the e-Acti.docxpotmanandrea
 
Security Standards  Please respond to the followingA number of .docx
Security Standards  Please respond to the followingA number of .docxSecurity Standards  Please respond to the followingA number of .docx
Security Standards  Please respond to the followingA number of .docxpotmanandrea
 
Section Four Answer all questions thoroughly and hand-write on loos.docx
Section Four Answer all questions thoroughly and hand-write on loos.docxSection Four Answer all questions thoroughly and hand-write on loos.docx
Section Four Answer all questions thoroughly and hand-write on loos.docxpotmanandrea
 
Security Support Responsibilities Please respond to the following.docx
Security Support Responsibilities Please respond to the following.docxSecurity Support Responsibilities Please respond to the following.docx
Security Support Responsibilities Please respond to the following.docxpotmanandrea
 
Section 1 (200 words)In cognition, one of the major areas of discu.docx
Section 1 (200 words)In cognition, one of the major areas of discu.docxSection 1 (200 words)In cognition, one of the major areas of discu.docx
Section 1 (200 words)In cognition, one of the major areas of discu.docxpotmanandrea
 
Second Wave Feminism, gained strength during the 1970s. For this .docx
Second Wave Feminism, gained strength during the 1970s. For this .docxSecond Wave Feminism, gained strength during the 1970s. For this .docx
Second Wave Feminism, gained strength during the 1970s. For this .docxpotmanandrea
 

More from potmanandrea (20)

Select a foreign country and analyze its monetary system. Formatted .docx
Select a foreign country and analyze its monetary system. Formatted .docxSelect a foreign country and analyze its monetary system. Formatted .docx
Select a foreign country and analyze its monetary system. Formatted .docx
 
Select a company of your choice. Study the company’ CEO and determ.docx
Select a company of your choice. Study the company’ CEO and determ.docxSelect a company of your choice. Study the company’ CEO and determ.docx
Select a company of your choice. Study the company’ CEO and determ.docx
 
Seeing” Social MovementsAn important component of studying social.docx
Seeing” Social MovementsAn important component of studying social.docxSeeing” Social MovementsAn important component of studying social.docx
Seeing” Social MovementsAn important component of studying social.docx
 
Seeking someone that is great at writing papers!  Must be familar .docx
Seeking someone that is great at writing papers!  Must be familar .docxSeeking someone that is great at writing papers!  Must be familar .docx
Seeking someone that is great at writing papers!  Must be familar .docx
 
See comments at the right of the data set..docx
See comments at the right of the data set..docxSee comments at the right of the data set..docx
See comments at the right of the data set..docx
 
Select a company you are familiar with. Imagine that this company is.docx
Select a company you are familiar with. Imagine that this company is.docxSelect a company you are familiar with. Imagine that this company is.docx
Select a company you are familiar with. Imagine that this company is.docx
 
Select a contemporary issue that is of interest to you.Create .docx
Select a contemporary issue that is of interest to you.Create .docxSelect a contemporary issue that is of interest to you.Create .docx
Select a contemporary issue that is of interest to you.Create .docx
 
see the attached filesThe QuestionIs management in the publ.docx
see the attached filesThe QuestionIs management in the publ.docxsee the attached filesThe QuestionIs management in the publ.docx
see the attached filesThe QuestionIs management in the publ.docx
 
See discussions, stats, and author profiles for this publicati.docx
See discussions, stats, and author profiles for this publicati.docxSee discussions, stats, and author profiles for this publicati.docx
See discussions, stats, and author profiles for this publicati.docx
 
See details below with a minimum of 8 scholarly referencesKey .docx
See details below with a minimum of 8 scholarly referencesKey .docxSee details below with a minimum of 8 scholarly referencesKey .docx
See details below with a minimum of 8 scholarly referencesKey .docx
 
See attatched for part 1Part 2Develop a 10- to 12-slide Micr.docx
See attatched for part 1Part 2Develop a 10- to 12-slide Micr.docxSee attatched for part 1Part 2Develop a 10- to 12-slide Micr.docx
See attatched for part 1Part 2Develop a 10- to 12-slide Micr.docx
 
SEE ATTACHMENTRefer to the Intervention Series #38 Anthony” vid.docx
SEE ATTACHMENTRefer to the Intervention Series #38 Anthony” vid.docxSEE ATTACHMENTRefer to the Intervention Series #38 Anthony” vid.docx
SEE ATTACHMENTRefer to the Intervention Series #38 Anthony” vid.docx
 
SEE Attachment for subject MatterMust be eight to ten double-spa.docx
SEE Attachment for subject MatterMust be eight to ten double-spa.docxSEE Attachment for subject MatterMust be eight to ten double-spa.docx
SEE Attachment for subject MatterMust be eight to ten double-spa.docx
 
See attachment for my proposal and exampleUse the completed prio.docx
See attachment for my proposal and exampleUse the completed prio.docxSee attachment for my proposal and exampleUse the completed prio.docx
See attachment for my proposal and exampleUse the completed prio.docx
 
Securities Fraud Please respond to the followingFrom the e-Acti.docx
Securities Fraud Please respond to the followingFrom the e-Acti.docxSecurities Fraud Please respond to the followingFrom the e-Acti.docx
Securities Fraud Please respond to the followingFrom the e-Acti.docx
 
Security Standards  Please respond to the followingA number of .docx
Security Standards  Please respond to the followingA number of .docxSecurity Standards  Please respond to the followingA number of .docx
Security Standards  Please respond to the followingA number of .docx
 
Section Four Answer all questions thoroughly and hand-write on loos.docx
Section Four Answer all questions thoroughly and hand-write on loos.docxSection Four Answer all questions thoroughly and hand-write on loos.docx
Section Four Answer all questions thoroughly and hand-write on loos.docx
 
Security Support Responsibilities Please respond to the following.docx
Security Support Responsibilities Please respond to the following.docxSecurity Support Responsibilities Please respond to the following.docx
Security Support Responsibilities Please respond to the following.docx
 
Section 1 (200 words)In cognition, one of the major areas of discu.docx
Section 1 (200 words)In cognition, one of the major areas of discu.docxSection 1 (200 words)In cognition, one of the major areas of discu.docx
Section 1 (200 words)In cognition, one of the major areas of discu.docx
 
Second Wave Feminism, gained strength during the 1970s. For this .docx
Second Wave Feminism, gained strength during the 1970s. For this .docxSecond Wave Feminism, gained strength during the 1970s. For this .docx
Second Wave Feminism, gained strength during the 1970s. For this .docx
 

Recently uploaded

Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementmkooblal
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxDr.Ibrahim Hassaan
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfMahmoud M. Sallam
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxJiesonDelaCerna
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfMr Bounab Samir
 
MICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptxMICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptxabhijeetpadhi001
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitolTechU
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 

Recently uploaded (20)

Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of management
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptx
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdf
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptx
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
 
MICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptxMICROBIOLOGY biochemical test detailed.pptx
MICROBIOLOGY biochemical test detailed.pptx
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptx
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 

PSYC 100 Webliography Generator

  • 1. PSYC 100 1 Written Assignment - Webliography Points Possible: 100 Due Date: July 15, 2016 by 11:59 p.m. Late assignments will not be accepted. Please do not ask for an exception; the answer will be no. (Be sure you upload the correct file to the course and that the file is saved as either a .doc, .docx or PDF file. For this assignment, you are required to prepare a "webliography," (i.e. an online, annotated bibliography of websites). This assignment will give you an opportunity to research one single topic from Chapter 3. Chapter 15, Chapter 7, or Chapter 9. A topic is VERY SPECIFIC not general. For example, you can select PTSD but not Anxiety Disorders because it is too general. Use the Internet to do the research. There are many single topics to choose from in the permitted chapters. The goal of this assignment is to select websites that provide information on the topic
  • 2. and then evaluate (critically evaluate) the information presented. A webliography is an annotated bibliography that pertains to websites only not books or specific articles. 1. Search the Internet and find eight (8) websites focused on the topic you selected. These websites should be what you feel are high quality Internet resources. Do not use resource databases that are online. Do not refer to research articles. Find websites that provide information on the topic you selected. Do not use any wikis either. 2. The depth of the webliography is more important than its breadth. Do not simply create a hotlist. Rather, organize a useful, annotated list that showcases the eight (8) websites you feel are the most important on the Internet related to the topic you selected. 3. Evaluate the information on each of the websites you selected. For example, does
  • 3. the information coincide with information presented in the textbook? If so, provide an example. Does the information on the website provide scholarly references to support the information shared on the website? Was the information specific enough to be useful to the reader? 4. Below the evaluation information, include the URL, a brief description of the website, date the website was last updated, and the author (or owner) of the information you evaluated. 5. Each entry should be about 10 to 14 sentences in length. List the entries in alphabetical order based on the last name of the website owner or the author of the information. If you cannot find this information, then reference it as “No Author” in the list. PSYC 100 2
  • 4. Please remember, a major part of this assignment is evaluating all the information on the website. Not all information on the Internet is reliable or valid. On this and the next page you will find the grading rubric and an example of an entry for a Webliography. Keep in mind that I did I used a specific topic and it is a real world context. Webliography = 100 points Evaluation Areas Points All 8 entries are complete: Author’s name (if identified) Title of web page Date published/last updated URL <http://www> 32 Entry includes a concise evaluation and summary of the website information related to your specific topic. 48
  • 5. Format, spelling, grammar: 1. Your name in the upper right-hand corner 2. Entries are double-spaced 3. Entries are in alpha order by website name 4. One-inch margins on all sides 5. Font size is 12 point 6. Font style is Times Roman 7. Document is saved as a .doc, .docx, or PDF (no other formats allowed. 8. Write in full sentences. Double-check for subject and verb agreement and spelling. 9. Use appropriate grammar rules. 20 Total points possible 100
  • 6. PSYC 100 3 Topic: Reliability of Eyewitness Testimony (This is an example of one webliography entry. However, because this is an example only, I selected a topic that is NOT relevant to the chapters assigned for this assignment. ) 1. Live Science http://www.livescience.com/16194-crime-eyewitnesses- mistakes.html Article Title: Eyewitness Testimony Can Be Tragically Mistaken Authors: Stephanie Pappas and Jeanna Bryner Date: September 22, 2011 Date Website Last Updated: Missing This is a website that seems to be the home of an online magazine. The article was
  • 7. written by two journalists that work for the magazine. The main focus of the article is the unreliability of eyewitness testimony. While the authors quote two psychologists as experts to also provide empirical evidence as well. They present evidence of the unreliability using both historical and empirical evidence from several psychological experiments. The references are available on the site. This information coincides with the information in our textbook and seems valid. For example, both the website and textbook stated that the emotion a person experiences during a traumatic event and the ways the human memory system combines other memories can easily distort recall and, at the same time, help people feel certain about what they think they saw. http://www.livescience.com/16194-crime-eyewitnesses- mistakes.html CEE 213—Deformable Solids The Mechanics Project
  • 8. Arizona State University CP 2—Properties of Areas 1 Computing Project 2 Properties of Areas The computing project Properties of Areas concerns the computation of various properties of cross sectional areas. In each of our theories (i.e., axial bar, torsion, and beams) we arrive at a point where we need certain properties of the cross section to advance the analysis. For the axial bar we needed only the area; for torsion we needed the polar moment of inertia; for the beam we will need moment of inertia of the cross section about the centroid of the cross section. We can develop an algorithm that allows the computation of all of the properties of a cross section if the cross section can be described as a polygon. The algorithm is built on formu- las for the properties of a triangle. What that program will do is
  • 9. create a triangle from the origin and the two vertex nodes associated with a side of the polygon. Whether this polygon adds or subtracts from the accumulating properties will be determined from the vectors defining the sides of the polygon (see the CP Notes for further clarification). If you loop over all of the sides, the end result will be the properties of the entire cross section. The general steps are as follows: 1. Develop a routine that allows you to describe the cross section with a sequence of points numbered in a clockwise fashion starting with 1. The last point should be a repeat of the first one in order to close the polygon. Some suggestions: a. Store the (x,y) coordinates of each point in a single array x(N,2), where N is the number of points required to describe the cross section (including the repeat of the first point as the last point) and the first column contains the x values of the coordinate and the second column contains the values
  • 10. of the coordinate and the second column contains the y value. b. It will eventually be a good idea to put the input into a MATLAB function and call the function from your main program. That way you can build up a library of cross sectional shapes without changing your main program. c. If you need a negative area region (for a cutout section like in an open tube) then number the points in that region in a counter- clockwise fashion. Just keep numbering the vertices in order (no need to start over for the negative areas). 2. Develop a routine to loop over all of the edges of the polygon and compute (and accumulate) the contributions of the triangle defined by the vectors from the origin to the two vertices of the current side of the triangle (that gives two sides) and the CEE 213—Deformable Solids The Mechanics Project
  • 11. Arizona State University CP 2—Properties of Areas 2 vector that points from the first to the second vertex (in numerical order). Calculate the area, centroid, and outer-product contributions to the properties (see the CP Notes for clarification of this issue). 3. Compute the orientation of the principal axes of the cross section using the eigen- value solver in MATLAB (eig) on the moment of inertia matrix J. See the CP Notes for more information on this task. 4. Create an output table (print into the Command Window) giving the relevant cross sectional properties. Develop a routine to plot the cross section. Include the loca- tion of the centroid of the cross section in the graphic along with lines defining the principal axes. 5. Generate a library of cross sections, including some simple ones (e.g., a rectangular cross sections) to verify the code. Include in your library as
  • 12. many of the following cross sections as you can get done: a. Solid rectangle with width b and height h. b. Solid circle of radius R. c. Rectangular tube with different wall thickness on top and bottom. d. I-beam with flange width b, web depth d, flange thickness tf, and web thickness tw. e. Angle section with different leg lengths and leg thicknesses. f. Circular tube with outside radius R and wall thickness t. g. T-beam. 6. Use the program to explore aspects of the problem. For example, a. Why is it more efficient to use an open circular tube for torsion rather than a solid cylinder? b. For beam bending we can control deflections and reduce stresses with a large moment of inertia about the axis of bending. Show the trade-offs
  • 13. available in an I-beam when you can select different web and flange depths and thicknesses. c. Explore any other feature of the problem that you find interesting. Write a report documenting your work and the results (in accord with the specification given in the document Guidelines for Doing Computing Projects). Post it to the Critviz website prior to the deadline. Note that there is only one submission for this problem (the final submission). CEE 213—Deformable Solids The Mechanics Project Arizona State University CP 2—Properties of Areas 3 Please consult the document Evaluation of Computing Projects to see how your project will be evaluated to make sure that you can get full marks. Note that there is no peer review process for reports in this course.