SlideShare a Scribd company logo
Small Writing Assignment #3
Introductions and Outlines
Due date: FRIDAY, February 12 by 11:55pm in BB
Point Value: 50 points
Instructions:
For this small writing assignment, you will prepare
a full introduction, with a
thesis statement,using the topicprompt for Paper
#1. You will use these
introductions and outlines when constructing the
final draft of Paper #1. You
must use the standards for introductions used in SWA
#2, and available on BB.
This means your introduction needs to have 3
parts, and be 5-7 sentences
long. The outline portion of this assignment
may be in any format you wish.
However, the more information you include, the more
feedback your TA can
give you. There are outline guides
available on Blackboard, should you need
assistance.
Topic Prompt for Paper #1:
“The hardships Hilda Satt faced an immigrantin
the 1890s have a familiar ring to
them.”1
“Hilda Satt, like every immigrant, had to
shape a new identity that reconciled her
homeland culture with her American experience.”2
Topic Question: How does Satt’s autobiography reflect
the larger 19th century
immigrantexperience?
As you formulate you answer, you may want to
consider the following questions:
-What ‘push’/’pull’ factors attracted Satt and others
to the United States? (i.e.
What is driving them from their home
nations/drawing them to the U.S.?)
-How did her dailylife change after moving to
the U.S.?
-What institutions in the United States did
immigrants use to help them
identify as Americans?
These are by no means the only points/themes
you may include in your paper!
There are a TON of different ways this document
reflects the immigrantexperience
(as delineatedin lectures, the textbook, and the
assigned readings).
Sources you may use in this essay (you are NOT
permitted to use outside souces):
-Going to the Source, Chapter 4, “Immigrant to
the Promised Land,” p. 78-99
- Fraser, Pearson Revel textbook
- Dr. Cornelius’ Lectures
-Daniel E. Bender, “The Perils of Degeneration:
Reform, the Savage Immigrant, and
the Survival of the Unfit,” Journal of Social
History 42, no. 1 (Fall 2008): 5-29.
SWA #3 Example:
1 Victoria Bissell Brown and Timothy J.
Shannon, eds., Going to the Source: The
Bedford Reader in
2 Ibid, 81.
Susie F. Student
AMH2020/2042 Spring 2016
Dr. Cornelius
TA: Joe Schmoe
SWA #3: Introduction and Outline for Paper #1
Introduction:
• Commercials are an accepted part of television
entertainment. Events and
characters on The JerrySpringer Show are used to
market specific products
advertisedduring the commercial breaks. To
sell thesevaluable products,
however, the showencourages its audience, middle-class
viewers, to fear an
unrealistic threat to their social values from
the Springer Show’s so called
“guests.” These fears are reinforcedby the middle-
class studio audience, which
takespleasure from separatingitselffrom the actions and
social class of the
‘guests.’ Logically,the showreinforces the values
presented in most of the
advertisements. The Springer Show
advances its commercial purpose, to sell
products, in an unethical and potentially damaging
way.
Body Paragraphs/Structural Outline:
• Major Point 1/Body Paragraph #1: The Springer
Show reinforces white, middle-
class, conservative, heteronormative values from
the late-twentieth century,
creating a dichotomy between “normal” Americans
and the “freaks” appearing
on the program.
o Evidence: The JerrySpringer Show portrays guests
as social, and often
sexual, deviants from the mainstream American “norm”
frequently
portrayed in the commercials airedduring its
broadcast.
§ Specific Examples from Commercials airedduring the
Show:
Campbell’s Soupcommercial; Pampers commercial
demonstrate
that “acceptable” behavior is traditional marriage,
social, and
sexual patterns as set by white, middle-class,
America
• Major Point 2/Body Paragraph #2: The Jerry
Springer Show carefully controls its
use of strong emotional appeals to effectively
persuade its audience to adopt the
producers'values.
o Evidence: Characters are either cheered or
“booed” by the studio
audience when they walk on stage. For viewers
at home, this audience
reaction seems spontaneous or ‘natural’, but of
course the audience is in
fact reacting to cue cards, scripted by the
producers.
§ Specific Examples from the Show: When Crishon
walks out on
stagehe is instantly ‘booed’, effectively setting
him up as ‘the bad
guy’ before he has even spoken his piece.
Later, the audience
cheers enthusiastically as they watch him
physicallyattacked by
Taiwana. These audience reactions signal to viewers
which
characters are ‘good’ or ‘bad,’ as well as what
values are
acceptable or unacceptable.
• Major Point 3/Body Paragraph #3: The Springer
Show’s methods perpetuate
stereotypes and hatred, which makes social
acceptance for people like its guests
more difficult.
o Evidence: The racist, sexist, and
heteronormative stereotypes presented
in the Springer Show are at the forefront of
anti-equality and hate groups
throughout the country.
§ Specific Examples from the Show/the Groups: Both
the Springer
Show and the Organization for Traditional
Marriage portray the
LGBT community as dangerous and deviant; the
Springer Show
and many conservative groups portray poor people
are licentious
and irresponsible
Conclusion:
• Though widely regarded as a paragon of lower-
class entertainment, the Jerry
Springer Show is actually designed to reinforce
the values of the white,
heteronormative middle-class. A close
examination of its contents and
commercials demonstrates how the showdangerously
perpetuates racist,
sexist, and classist stereotypes. This is not an
issuelimited to talk shows, but
one that permeates all of television entertainment.
CIT 270L Integrative Programming
Assignment #1—Managing a User Account List
Due 2/20 in Lab section / Moodle
Objective:
To manage a user list that can be modified and saved to a text
file.
Inputs:
passwords, separated by a colon (:) without any spaces
-new user account, ‘e’-edit existing user
account, ‘d’- delete existing user account, ‘l’- list
user accounts, ‘q’-quit)
Output:
passwords, separated by a colon (:) without any spaces
Specification:
The program manages a list of user accounts and passwords
supplied by a system administrator.
Any inputted username should be stripped of any non-
alphanumeric characters
(special characters such as ! @ # $ % ^ & * ( ) _ + ; : ’ ”), using
regular expression substitution:
$username =~ s/[^a-zA-Z0-9]//g;
and should be converted to lowercase: $username =
lc($username);
Any inputted password should be stripped of an apostrophe
(other symbols are allowed):
$password =~ s/’//g;
Each option should be implemented as a separate function
within a Package that exports its functions, and the
functions are referenced by a hash indexed by the user input:
my %function = (‘n’=>&new_user, ‘e’=>&edit_user,
‘d’=>&delete_user,
‘l’=>&list_accounts)
which can be called by assigning a variable to the key of the
hash, such as:
my $selection = $function{$choice}
and updating the list stored as a hash as: %hash = $selection-
>(%hash)
Within each function, access the actual parameter %hash as a
local parameter using the shift command:
(eg: my $param = shift; my %local_hash = %$param) and
update the hash according to the
function. The script file (.pl) should import the functions from
the package (.pm) file to call the appropriate
function.
The program should loop until the user chooses to quit (selects
status as ‘q’). If the user enters an illegal status,
the program will prompt again for the status input. Upon
quitting, the program prompts the user to save the list to
a text file of the same name used to initially read the user list.
What to turn in:
A single zipped file (asmt1_yourlastname.zip) containing both
source code files (the perl script called:
asmt1_yourlastname.pl, and the perl module file called:
functs_yourlastname.pm) submitted via Moodle
(http://moodle.csun.edu) to the Lab section (not the lecture
section). Any deviation from the format for
submission will result in an automatic -10%.
http://moodle.csun.edu/
Sample Output:
% perl asmt1_mcilhenny.pl
Enter file to open: myfile.txt
User accounts
-------------
n = New user account
e = Edit existing user account
d = Delete existing user account
l = List user accounts
q = Quit
Enter choice: n
Enter username: einstein
Enter password: e=mc^2
User accounts
-------------
n = New user account
e = Edit existing user account
d = Delete existing user account
l = List user accounts
q = Quit
Enter choice: n
Enter username: newton
Enter password: f=ma
User accounts
-------------
n = New user account
e = Edit existing user account
d = Delete existing user account
l = List user accounts
q = Quit
Enter choice: n
Enter username: pythagoras
Enter password: a^2+b^2=c^2
User accounts
-------------
n = New user account
e = Edit existing user account
d = Delete existing user account
l = List user accounts
q = Quit
Enter choice: n
Enter username: einstein
Username already exists!
User accounts
-------------
n = New user account
e = Edit existing user account
d = Delete existing user account
l = List user accounts
q = Quit
Enter choice: e
Enter username to modify: fibonacci
Username does not exist!
User accounts
-------------
n = New user account
e = Edit existing user account
d = Delete existing user account
l = List user accounts
q = Quit
Enter choice: e
Enter username to edit: newton
Enter current password: f=m*a
Incorrect password!
User accounts
-------------
n = New user account
e = Edit existing user account
d = Delete existing user account
l = List user accounts
q = Quit
Enter choice: e
Enter username to edit: newton
Enter current password: f=ma
Enter new password: force=mass*accelaration
User accounts
-------------
n = New user account
e = Edit existing user account
d = Delete existing user account
l = List user accounts
q = Quit
Enter choice: d
Enter username to delete: pythagoras
User removed
User accounts
-------------
n = New user account
e = Edit existing user account
d = Delete existing user account
l = List user accounts
q = Quit
Enter choice: l
einstein:e=mc^2
newton:force=mass*accelaration
User accounts
-------------
n = New user account
e = Edit existing user account
d = Delete existing user account
l = List user accounts
q = Quit
Enter choice: q
Save contents? (y/n): y
% more myfile.txt
einstein:e=mc^2
newton:force=mass*acceleration
SmallWritingAssignment#3IntroductionsandOutlines.docx

More Related Content

Similar to SmallWritingAssignment#3IntroductionsandOutlines.docx

Narrative Essay Academic Phrases For Essays
Narrative Essay Academic Phrases For EssaysNarrative Essay Academic Phrases For Essays
Narrative Essay Academic Phrases For Essays
Asia Grover
 
6 Word Essay About Yourself
6 Word Essay About Yourself6 Word Essay About Yourself
6 Word Essay About Yourself
Maria Gomez
 
6 Word Essay About Yourself. Online assignment writing service.
6 Word Essay About Yourself. Online assignment writing service.6 Word Essay About Yourself. Online assignment writing service.
6 Word Essay About Yourself. Online assignment writing service.
Leslie Thomas
 
Modern Technology Essay In Hindi
Modern Technology Essay In HindiModern Technology Essay In Hindi
Modern Technology Essay In Hindi
Alexis Turner
 
2 Printable Lined Paper Red Bottom Blue Top Writing P
2 Printable Lined Paper Red Bottom Blue Top Writing P2 Printable Lined Paper Red Bottom Blue Top Writing P
2 Printable Lined Paper Red Bottom Blue Top Writing P
Natasha Barnett
 
Monopoly Essay Questions
Monopoly Essay QuestionsMonopoly Essay Questions
Monopoly Essay Questions
Kristen Marie
 
Essay On Patriotism In English For Class 9
Essay On Patriotism In English For Class 9Essay On Patriotism In English For Class 9
Essay On Patriotism In English For Class 9
Cassie Rivas
 
Academic Paper Example. FREE Academic Paper Ex
Academic Paper Example. FREE Academic Paper ExAcademic Paper Example. FREE Academic Paper Ex
Academic Paper Example. FREE Academic Paper Ex
Stephanie Johnson
 
1.pdf
1.pdf1.pdf
Short Autobiographical Essay Example
Short Autobiographical Essay ExampleShort Autobiographical Essay Example
Short Autobiographical Essay Example
Kimberly Powell
 
How To Write A Transfer Essay
How To Write A Transfer EssayHow To Write A Transfer Essay
How To Write A Transfer Essay
Renee Franco
 

Similar to SmallWritingAssignment#3IntroductionsandOutlines.docx (11)

Narrative Essay Academic Phrases For Essays
Narrative Essay Academic Phrases For EssaysNarrative Essay Academic Phrases For Essays
Narrative Essay Academic Phrases For Essays
 
6 Word Essay About Yourself
6 Word Essay About Yourself6 Word Essay About Yourself
6 Word Essay About Yourself
 
6 Word Essay About Yourself. Online assignment writing service.
6 Word Essay About Yourself. Online assignment writing service.6 Word Essay About Yourself. Online assignment writing service.
6 Word Essay About Yourself. Online assignment writing service.
 
Modern Technology Essay In Hindi
Modern Technology Essay In HindiModern Technology Essay In Hindi
Modern Technology Essay In Hindi
 
2 Printable Lined Paper Red Bottom Blue Top Writing P
2 Printable Lined Paper Red Bottom Blue Top Writing P2 Printable Lined Paper Red Bottom Blue Top Writing P
2 Printable Lined Paper Red Bottom Blue Top Writing P
 
Monopoly Essay Questions
Monopoly Essay QuestionsMonopoly Essay Questions
Monopoly Essay Questions
 
Essay On Patriotism In English For Class 9
Essay On Patriotism In English For Class 9Essay On Patriotism In English For Class 9
Essay On Patriotism In English For Class 9
 
Academic Paper Example. FREE Academic Paper Ex
Academic Paper Example. FREE Academic Paper ExAcademic Paper Example. FREE Academic Paper Ex
Academic Paper Example. FREE Academic Paper Ex
 
1.pdf
1.pdf1.pdf
1.pdf
 
Short Autobiographical Essay Example
Short Autobiographical Essay ExampleShort Autobiographical Essay Example
Short Autobiographical Essay Example
 
How To Write A Transfer Essay
How To Write A Transfer EssayHow To Write A Transfer Essay
How To Write A Transfer Essay
 

More from budabrooks46239

Enterprise Key Management Plan An eight- to 10-page  double.docx
Enterprise Key Management Plan An eight- to 10-page  double.docxEnterprise Key Management Plan An eight- to 10-page  double.docx
Enterprise Key Management Plan An eight- to 10-page  double.docx
budabrooks46239
 
English IV Research PaperMrs. MantineoObjective  To adher.docx
English IV Research PaperMrs. MantineoObjective  To adher.docxEnglish IV Research PaperMrs. MantineoObjective  To adher.docx
English IV Research PaperMrs. MantineoObjective  To adher.docx
budabrooks46239
 
Enter in conversation with other writers by writing a thesis-dri.docx
Enter in conversation with other writers by writing a thesis-dri.docxEnter in conversation with other writers by writing a thesis-dri.docx
Enter in conversation with other writers by writing a thesis-dri.docx
budabrooks46239
 
English II – Touchstone 3.2 Draft an Argumentative Research Essay.docx
English II – Touchstone 3.2 Draft an Argumentative Research Essay.docxEnglish II – Touchstone 3.2 Draft an Argumentative Research Essay.docx
English II – Touchstone 3.2 Draft an Argumentative Research Essay.docx
budabrooks46239
 
English 3060Spring 2021Group Summary ofReinhardP.docx
English 3060Spring 2021Group Summary ofReinhardP.docxEnglish 3060Spring 2021Group Summary ofReinhardP.docx
English 3060Spring 2021Group Summary ofReinhardP.docx
budabrooks46239
 
English 102 Essay 2 First Draft Assignment Feminism and Hubris.docx
English 102 Essay 2 First Draft Assignment Feminism and Hubris.docxEnglish 102 Essay 2 First Draft Assignment Feminism and Hubris.docx
English 102 Essay 2 First Draft Assignment Feminism and Hubris.docx
budabrooks46239
 
English 102 Essay 2 Assignment Feminism and Hubris”Write a.docx
English 102 Essay 2 Assignment Feminism and Hubris”Write a.docxEnglish 102 Essay 2 Assignment Feminism and Hubris”Write a.docx
English 102 Essay 2 Assignment Feminism and Hubris”Write a.docx
budabrooks46239
 
ENGL112 WednesdayDr. Jason StarnesMarch 9, 2020Human Respo.docx
ENGL112 WednesdayDr. Jason StarnesMarch 9, 2020Human Respo.docxENGL112 WednesdayDr. Jason StarnesMarch 9, 2020Human Respo.docx
ENGL112 WednesdayDr. Jason StarnesMarch 9, 2020Human Respo.docx
budabrooks46239
 
English 101 - Reminders and Help for Rhetorical Analysis Paragraph.docx
English 101 - Reminders and Help for Rhetorical Analysis Paragraph.docxEnglish 101 - Reminders and Help for Rhetorical Analysis Paragraph.docx
English 101 - Reminders and Help for Rhetorical Analysis Paragraph.docx
budabrooks46239
 
ENGL 301BSections 12 & 15Prof. GuzikSpring 2020Assignment .docx
ENGL 301BSections 12 & 15Prof. GuzikSpring 2020Assignment .docxENGL 301BSections 12 & 15Prof. GuzikSpring 2020Assignment .docx
ENGL 301BSections 12 & 15Prof. GuzikSpring 2020Assignment .docx
budabrooks46239
 
ENGL 102Use the following template as a cover page for each writ.docx
ENGL 102Use the following template as a cover page for each writ.docxENGL 102Use the following template as a cover page for each writ.docx
ENGL 102Use the following template as a cover page for each writ.docx
budabrooks46239
 
ENGL2310 Essay 2 Assignment Due by Saturday, June 13, a.docx
ENGL2310 Essay 2 Assignment          Due by Saturday, June 13, a.docxENGL2310 Essay 2 Assignment          Due by Saturday, June 13, a.docx
ENGL2310 Essay 2 Assignment Due by Saturday, June 13, a.docx
budabrooks46239
 
ENGL 151 Research EssayAssignment DetailsValue 25 (additio.docx
ENGL 151 Research EssayAssignment DetailsValue 25 (additio.docxENGL 151 Research EssayAssignment DetailsValue 25 (additio.docx
ENGL 151 Research EssayAssignment DetailsValue 25 (additio.docx
budabrooks46239
 
ENGL 140 Signature Essay Peer Review WorksheetAssignmentDirectio.docx
ENGL 140 Signature Essay Peer Review WorksheetAssignmentDirectio.docxENGL 140 Signature Essay Peer Review WorksheetAssignmentDirectio.docx
ENGL 140 Signature Essay Peer Review WorksheetAssignmentDirectio.docx
budabrooks46239
 
ENGINEERING ETHICSThe Space Shuttle Challenger Disaster.docx
ENGINEERING ETHICSThe Space Shuttle Challenger Disaster.docxENGINEERING ETHICSThe Space Shuttle Challenger Disaster.docx
ENGINEERING ETHICSThe Space Shuttle Challenger Disaster.docx
budabrooks46239
 
Engaging Youth Experiencing Homelessness Core Practi.docx
Engaging Youth Experiencing Homelessness Core Practi.docxEngaging Youth Experiencing Homelessness Core Practi.docx
Engaging Youth Experiencing Homelessness Core Practi.docx
budabrooks46239
 
Engaging Families to Support Indigenous Students’ Numeracy Devel.docx
Engaging Families to Support Indigenous Students’ Numeracy Devel.docxEngaging Families to Support Indigenous Students’ Numeracy Devel.docx
Engaging Families to Support Indigenous Students’ Numeracy Devel.docx
budabrooks46239
 
Endocrine Attendance QuestionsWhat is hypopituitarism and how .docx
Endocrine Attendance QuestionsWhat is hypopituitarism and how .docxEndocrine Attendance QuestionsWhat is hypopituitarism and how .docx
Endocrine Attendance QuestionsWhat is hypopituitarism and how .docx
budabrooks46239
 
ENG 130 Literature and Comp ENG 130 Research Essay E.docx
ENG 130 Literature and Comp ENG 130 Research Essay E.docxENG 130 Literature and Comp ENG 130 Research Essay E.docx
ENG 130 Literature and Comp ENG 130 Research Essay E.docx
budabrooks46239
 
ENG 201 01 Summer I Presentation Assignment· Due , June 7, .docx
ENG 201 01 Summer I Presentation Assignment· Due , June 7, .docxENG 201 01 Summer I Presentation Assignment· Due , June 7, .docx
ENG 201 01 Summer I Presentation Assignment· Due , June 7, .docx
budabrooks46239
 

More from budabrooks46239 (20)

Enterprise Key Management Plan An eight- to 10-page  double.docx
Enterprise Key Management Plan An eight- to 10-page  double.docxEnterprise Key Management Plan An eight- to 10-page  double.docx
Enterprise Key Management Plan An eight- to 10-page  double.docx
 
English IV Research PaperMrs. MantineoObjective  To adher.docx
English IV Research PaperMrs. MantineoObjective  To adher.docxEnglish IV Research PaperMrs. MantineoObjective  To adher.docx
English IV Research PaperMrs. MantineoObjective  To adher.docx
 
Enter in conversation with other writers by writing a thesis-dri.docx
Enter in conversation with other writers by writing a thesis-dri.docxEnter in conversation with other writers by writing a thesis-dri.docx
Enter in conversation with other writers by writing a thesis-dri.docx
 
English II – Touchstone 3.2 Draft an Argumentative Research Essay.docx
English II – Touchstone 3.2 Draft an Argumentative Research Essay.docxEnglish II – Touchstone 3.2 Draft an Argumentative Research Essay.docx
English II – Touchstone 3.2 Draft an Argumentative Research Essay.docx
 
English 3060Spring 2021Group Summary ofReinhardP.docx
English 3060Spring 2021Group Summary ofReinhardP.docxEnglish 3060Spring 2021Group Summary ofReinhardP.docx
English 3060Spring 2021Group Summary ofReinhardP.docx
 
English 102 Essay 2 First Draft Assignment Feminism and Hubris.docx
English 102 Essay 2 First Draft Assignment Feminism and Hubris.docxEnglish 102 Essay 2 First Draft Assignment Feminism and Hubris.docx
English 102 Essay 2 First Draft Assignment Feminism and Hubris.docx
 
English 102 Essay 2 Assignment Feminism and Hubris”Write a.docx
English 102 Essay 2 Assignment Feminism and Hubris”Write a.docxEnglish 102 Essay 2 Assignment Feminism and Hubris”Write a.docx
English 102 Essay 2 Assignment Feminism and Hubris”Write a.docx
 
ENGL112 WednesdayDr. Jason StarnesMarch 9, 2020Human Respo.docx
ENGL112 WednesdayDr. Jason StarnesMarch 9, 2020Human Respo.docxENGL112 WednesdayDr. Jason StarnesMarch 9, 2020Human Respo.docx
ENGL112 WednesdayDr. Jason StarnesMarch 9, 2020Human Respo.docx
 
English 101 - Reminders and Help for Rhetorical Analysis Paragraph.docx
English 101 - Reminders and Help for Rhetorical Analysis Paragraph.docxEnglish 101 - Reminders and Help for Rhetorical Analysis Paragraph.docx
English 101 - Reminders and Help for Rhetorical Analysis Paragraph.docx
 
ENGL 301BSections 12 & 15Prof. GuzikSpring 2020Assignment .docx
ENGL 301BSections 12 & 15Prof. GuzikSpring 2020Assignment .docxENGL 301BSections 12 & 15Prof. GuzikSpring 2020Assignment .docx
ENGL 301BSections 12 & 15Prof. GuzikSpring 2020Assignment .docx
 
ENGL 102Use the following template as a cover page for each writ.docx
ENGL 102Use the following template as a cover page for each writ.docxENGL 102Use the following template as a cover page for each writ.docx
ENGL 102Use the following template as a cover page for each writ.docx
 
ENGL2310 Essay 2 Assignment Due by Saturday, June 13, a.docx
ENGL2310 Essay 2 Assignment          Due by Saturday, June 13, a.docxENGL2310 Essay 2 Assignment          Due by Saturday, June 13, a.docx
ENGL2310 Essay 2 Assignment Due by Saturday, June 13, a.docx
 
ENGL 151 Research EssayAssignment DetailsValue 25 (additio.docx
ENGL 151 Research EssayAssignment DetailsValue 25 (additio.docxENGL 151 Research EssayAssignment DetailsValue 25 (additio.docx
ENGL 151 Research EssayAssignment DetailsValue 25 (additio.docx
 
ENGL 140 Signature Essay Peer Review WorksheetAssignmentDirectio.docx
ENGL 140 Signature Essay Peer Review WorksheetAssignmentDirectio.docxENGL 140 Signature Essay Peer Review WorksheetAssignmentDirectio.docx
ENGL 140 Signature Essay Peer Review WorksheetAssignmentDirectio.docx
 
ENGINEERING ETHICSThe Space Shuttle Challenger Disaster.docx
ENGINEERING ETHICSThe Space Shuttle Challenger Disaster.docxENGINEERING ETHICSThe Space Shuttle Challenger Disaster.docx
ENGINEERING ETHICSThe Space Shuttle Challenger Disaster.docx
 
Engaging Youth Experiencing Homelessness Core Practi.docx
Engaging Youth Experiencing Homelessness Core Practi.docxEngaging Youth Experiencing Homelessness Core Practi.docx
Engaging Youth Experiencing Homelessness Core Practi.docx
 
Engaging Families to Support Indigenous Students’ Numeracy Devel.docx
Engaging Families to Support Indigenous Students’ Numeracy Devel.docxEngaging Families to Support Indigenous Students’ Numeracy Devel.docx
Engaging Families to Support Indigenous Students’ Numeracy Devel.docx
 
Endocrine Attendance QuestionsWhat is hypopituitarism and how .docx
Endocrine Attendance QuestionsWhat is hypopituitarism and how .docxEndocrine Attendance QuestionsWhat is hypopituitarism and how .docx
Endocrine Attendance QuestionsWhat is hypopituitarism and how .docx
 
ENG 130 Literature and Comp ENG 130 Research Essay E.docx
ENG 130 Literature and Comp ENG 130 Research Essay E.docxENG 130 Literature and Comp ENG 130 Research Essay E.docx
ENG 130 Literature and Comp ENG 130 Research Essay E.docx
 
ENG 201 01 Summer I Presentation Assignment· Due , June 7, .docx
ENG 201 01 Summer I Presentation Assignment· Due , June 7, .docxENG 201 01 Summer I Presentation Assignment· Due , June 7, .docx
ENG 201 01 Summer I Presentation Assignment· Due , June 7, .docx
 

Recently uploaded

Basic Civil Engineering Notes of Chapter-6, Topic- Ecosystem, Biodiversity G...
Basic Civil Engineering Notes of Chapter-6,  Topic- Ecosystem, Biodiversity G...Basic Civil Engineering Notes of Chapter-6,  Topic- Ecosystem, Biodiversity G...
Basic Civil Engineering Notes of Chapter-6, Topic- Ecosystem, Biodiversity G...
Denish Jangid
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
plant breeding methods in asexually or clonally propagated crops
plant breeding methods in asexually or clonally propagated cropsplant breeding methods in asexually or clonally propagated crops
plant breeding methods in asexually or clonally propagated crops
parmarsneha2
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
Delapenabediema
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
AzmatAli747758
 
The Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonThe Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve Thomason
Steve Thomason
 
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptxMARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
bennyroshan06
 
B.ed spl. HI pdusu exam paper-2023-24.pdf
B.ed spl. HI pdusu exam paper-2023-24.pdfB.ed spl. HI pdusu exam paper-2023-24.pdf
B.ed spl. HI pdusu exam paper-2023-24.pdf
Special education needs
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
Pavel ( NSTU)
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
Tamralipta Mahavidyalaya
 
NCERT Solutions Power Sharing Class 10 Notes pdf
NCERT Solutions Power Sharing Class 10 Notes pdfNCERT Solutions Power Sharing Class 10 Notes pdf
NCERT Solutions Power Sharing Class 10 Notes pdf
Vivekanand Anglo Vedic Academy
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
joachimlavalley1
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
RaedMohamed3
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
Sandy Millin
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
MIRIAMSALINAS13
 
Jose-Rizal-and-Philippine-Nationalism-National-Symbol-2.pptx
Jose-Rizal-and-Philippine-Nationalism-National-Symbol-2.pptxJose-Rizal-and-Philippine-Nationalism-National-Symbol-2.pptx
Jose-Rizal-and-Philippine-Nationalism-National-Symbol-2.pptx
ricssacare
 
Solid waste management & Types of Basic civil Engineering notes by DJ Sir.pptx
Solid waste management & Types of Basic civil Engineering notes by DJ Sir.pptxSolid waste management & Types of Basic civil Engineering notes by DJ Sir.pptx
Solid waste management & Types of Basic civil Engineering notes by DJ Sir.pptx
Denish Jangid
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
Jisc
 

Recently uploaded (20)

Basic Civil Engineering Notes of Chapter-6, Topic- Ecosystem, Biodiversity G...
Basic Civil Engineering Notes of Chapter-6,  Topic- Ecosystem, Biodiversity G...Basic Civil Engineering Notes of Chapter-6,  Topic- Ecosystem, Biodiversity G...
Basic Civil Engineering Notes of Chapter-6, Topic- Ecosystem, Biodiversity G...
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
plant breeding methods in asexually or clonally propagated crops
plant breeding methods in asexually or clonally propagated cropsplant breeding methods in asexually or clonally propagated crops
plant breeding methods in asexually or clonally propagated crops
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
 
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
 
The Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve ThomasonThe Art Pastor's Guide to Sabbath | Steve Thomason
The Art Pastor's Guide to Sabbath | Steve Thomason
 
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptxMARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
 
B.ed spl. HI pdusu exam paper-2023-24.pdf
B.ed spl. HI pdusu exam paper-2023-24.pdfB.ed spl. HI pdusu exam paper-2023-24.pdf
B.ed spl. HI pdusu exam paper-2023-24.pdf
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
 
NCERT Solutions Power Sharing Class 10 Notes pdf
NCERT Solutions Power Sharing Class 10 Notes pdfNCERT Solutions Power Sharing Class 10 Notes pdf
NCERT Solutions Power Sharing Class 10 Notes pdf
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
 
Jose-Rizal-and-Philippine-Nationalism-National-Symbol-2.pptx
Jose-Rizal-and-Philippine-Nationalism-National-Symbol-2.pptxJose-Rizal-and-Philippine-Nationalism-National-Symbol-2.pptx
Jose-Rizal-and-Philippine-Nationalism-National-Symbol-2.pptx
 
Solid waste management & Types of Basic civil Engineering notes by DJ Sir.pptx
Solid waste management & Types of Basic civil Engineering notes by DJ Sir.pptxSolid waste management & Types of Basic civil Engineering notes by DJ Sir.pptx
Solid waste management & Types of Basic civil Engineering notes by DJ Sir.pptx
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
 

SmallWritingAssignment#3IntroductionsandOutlines.docx

  • 1. Small Writing Assignment #3 Introductions and Outlines Due date: FRIDAY, February 12 by 11:55pm in BB Point Value: 50 points Instructions: For this small writing assignment, you will prepare a full introduction, with a thesis statement,using the topicprompt for Paper #1. You will use these introductions and outlines when constructing the final draft of Paper #1. You must use the standards for introductions used in SWA #2, and available on BB. This means your introduction needs to have 3 parts, and be 5-7 sentences long. The outline portion of this assignment may be in any format you wish. However, the more information you include, the more feedback your TA can give you. There are outline guides available on Blackboard, should you need assistance. Topic Prompt for Paper #1: “The hardships Hilda Satt faced an immigrantin the 1890s have a familiar ring to them.”1
  • 2. “Hilda Satt, like every immigrant, had to shape a new identity that reconciled her homeland culture with her American experience.”2 Topic Question: How does Satt’s autobiography reflect the larger 19th century immigrantexperience? As you formulate you answer, you may want to consider the following questions: -What ‘push’/’pull’ factors attracted Satt and others to the United States? (i.e. What is driving them from their home nations/drawing them to the U.S.?) -How did her dailylife change after moving to the U.S.? -What institutions in the United States did immigrants use to help them identify as Americans? These are by no means the only points/themes you may include in your paper! There are a TON of different ways this document reflects the immigrantexperience (as delineatedin lectures, the textbook, and the assigned readings). Sources you may use in this essay (you are NOT permitted to use outside souces): -Going to the Source, Chapter 4, “Immigrant to the Promised Land,” p. 78-99 - Fraser, Pearson Revel textbook - Dr. Cornelius’ Lectures -Daniel E. Bender, “The Perils of Degeneration:
  • 3. Reform, the Savage Immigrant, and the Survival of the Unfit,” Journal of Social History 42, no. 1 (Fall 2008): 5-29. SWA #3 Example: 1 Victoria Bissell Brown and Timothy J. Shannon, eds., Going to the Source: The Bedford Reader in 2 Ibid, 81. Susie F. Student AMH2020/2042 Spring 2016 Dr. Cornelius TA: Joe Schmoe SWA #3: Introduction and Outline for Paper #1 Introduction: • Commercials are an accepted part of television entertainment. Events and characters on The JerrySpringer Show are used to market specific products advertisedduring the commercial breaks. To sell thesevaluable products,
  • 4. however, the showencourages its audience, middle-class viewers, to fear an unrealistic threat to their social values from the Springer Show’s so called “guests.” These fears are reinforcedby the middle- class studio audience, which takespleasure from separatingitselffrom the actions and social class of the ‘guests.’ Logically,the showreinforces the values presented in most of the advertisements. The Springer Show advances its commercial purpose, to sell products, in an unethical and potentially damaging way. Body Paragraphs/Structural Outline: • Major Point 1/Body Paragraph #1: The Springer Show reinforces white, middle- class, conservative, heteronormative values from the late-twentieth century, creating a dichotomy between “normal” Americans and the “freaks” appearing on the program. o Evidence: The JerrySpringer Show portrays guests
  • 5. as social, and often sexual, deviants from the mainstream American “norm” frequently portrayed in the commercials airedduring its broadcast. § Specific Examples from Commercials airedduring the Show: Campbell’s Soupcommercial; Pampers commercial demonstrate that “acceptable” behavior is traditional marriage, social, and sexual patterns as set by white, middle-class, America • Major Point 2/Body Paragraph #2: The Jerry Springer Show carefully controls its use of strong emotional appeals to effectively persuade its audience to adopt the producers'values. o Evidence: Characters are either cheered or “booed” by the studio audience when they walk on stage. For viewers at home, this audience
  • 6. reaction seems spontaneous or ‘natural’, but of course the audience is in fact reacting to cue cards, scripted by the producers. § Specific Examples from the Show: When Crishon walks out on stagehe is instantly ‘booed’, effectively setting him up as ‘the bad guy’ before he has even spoken his piece. Later, the audience cheers enthusiastically as they watch him physicallyattacked by Taiwana. These audience reactions signal to viewers which characters are ‘good’ or ‘bad,’ as well as what values are acceptable or unacceptable. • Major Point 3/Body Paragraph #3: The Springer Show’s methods perpetuate stereotypes and hatred, which makes social acceptance for people like its guests more difficult.
  • 7. o Evidence: The racist, sexist, and heteronormative stereotypes presented in the Springer Show are at the forefront of anti-equality and hate groups throughout the country. § Specific Examples from the Show/the Groups: Both the Springer Show and the Organization for Traditional Marriage portray the LGBT community as dangerous and deviant; the Springer Show and many conservative groups portray poor people are licentious and irresponsible Conclusion: • Though widely regarded as a paragon of lower- class entertainment, the Jerry Springer Show is actually designed to reinforce the values of the white, heteronormative middle-class. A close examination of its contents and commercials demonstrates how the showdangerously perpetuates racist,
  • 8. sexist, and classist stereotypes. This is not an issuelimited to talk shows, but one that permeates all of television entertainment. CIT 270L Integrative Programming Assignment #1—Managing a User Account List Due 2/20 in Lab section / Moodle Objective: To manage a user list that can be modified and saved to a text file. Inputs: passwords, separated by a colon (:) without any spaces -new user account, ‘e’-edit existing user account, ‘d’- delete existing user account, ‘l’- list user accounts, ‘q’-quit) Output:
  • 9. passwords, separated by a colon (:) without any spaces Specification: The program manages a list of user accounts and passwords supplied by a system administrator. Any inputted username should be stripped of any non- alphanumeric characters (special characters such as ! @ # $ % ^ & * ( ) _ + ; : ’ ”), using regular expression substitution: $username =~ s/[^a-zA-Z0-9]//g; and should be converted to lowercase: $username = lc($username); Any inputted password should be stripped of an apostrophe (other symbols are allowed): $password =~ s/’//g; Each option should be implemented as a separate function within a Package that exports its functions, and the functions are referenced by a hash indexed by the user input: my %function = (‘n’=>&new_user, ‘e’=>&edit_user, ‘d’=>&delete_user, ‘l’=>&list_accounts)
  • 10. which can be called by assigning a variable to the key of the hash, such as: my $selection = $function{$choice} and updating the list stored as a hash as: %hash = $selection- >(%hash) Within each function, access the actual parameter %hash as a local parameter using the shift command: (eg: my $param = shift; my %local_hash = %$param) and update the hash according to the function. The script file (.pl) should import the functions from the package (.pm) file to call the appropriate function. The program should loop until the user chooses to quit (selects status as ‘q’). If the user enters an illegal status, the program will prompt again for the status input. Upon quitting, the program prompts the user to save the list to a text file of the same name used to initially read the user list. What to turn in: A single zipped file (asmt1_yourlastname.zip) containing both source code files (the perl script called:
  • 11. asmt1_yourlastname.pl, and the perl module file called: functs_yourlastname.pm) submitted via Moodle (http://moodle.csun.edu) to the Lab section (not the lecture section). Any deviation from the format for submission will result in an automatic -10%. http://moodle.csun.edu/ Sample Output: % perl asmt1_mcilhenny.pl Enter file to open: myfile.txt User accounts ------------- n = New user account e = Edit existing user account d = Delete existing user account l = List user accounts q = Quit Enter choice: n
  • 12. Enter username: einstein Enter password: e=mc^2 User accounts ------------- n = New user account e = Edit existing user account d = Delete existing user account l = List user accounts q = Quit Enter choice: n Enter username: newton Enter password: f=ma User accounts ------------- n = New user account e = Edit existing user account d = Delete existing user account
  • 13. l = List user accounts q = Quit Enter choice: n Enter username: pythagoras Enter password: a^2+b^2=c^2 User accounts ------------- n = New user account e = Edit existing user account d = Delete existing user account l = List user accounts q = Quit Enter choice: n Enter username: einstein Username already exists! User accounts
  • 14. ------------- n = New user account e = Edit existing user account d = Delete existing user account l = List user accounts q = Quit Enter choice: e Enter username to modify: fibonacci Username does not exist! User accounts ------------- n = New user account e = Edit existing user account d = Delete existing user account l = List user accounts
  • 15. q = Quit Enter choice: e Enter username to edit: newton Enter current password: f=m*a Incorrect password! User accounts ------------- n = New user account e = Edit existing user account d = Delete existing user account l = List user accounts q = Quit Enter choice: e Enter username to edit: newton Enter current password: f=ma Enter new password: force=mass*accelaration
  • 16. User accounts ------------- n = New user account e = Edit existing user account d = Delete existing user account l = List user accounts q = Quit Enter choice: d Enter username to delete: pythagoras User removed User accounts ------------- n = New user account e = Edit existing user account d = Delete existing user account l = List user accounts q = Quit
  • 17. Enter choice: l einstein:e=mc^2 newton:force=mass*accelaration User accounts ------------- n = New user account e = Edit existing user account d = Delete existing user account l = List user accounts q = Quit Enter choice: q Save contents? (y/n): y % more myfile.txt einstein:e=mc^2 newton:force=mass*acceleration