SlideShare a Scribd company logo
ENGL 102
General Writing resources and Requirements
NOTE: Use this as reference for each writing assignment! Your
grade may be adversely affected if you do not follow all of
these requirements. Email or call your instructor if you have
questions.
The required literary essays for this course demand careful
planning, drafting, revising/editing, and correct documentation.
The following resources and requirements provide instruction
on writing, research, and avoiding plagiarism. Carefully review
them before writing your literary essays.
Plagiarism
Plagiarism encompasses more than the use of printed sources
without giving proper credit. It means handing in writing in the
name of one person that another person has composed, revised,
edited, or proofread without the instructor's approval.
Accordingly, the following guidelines are set down, and you
must study and understand them from the outset. The instructor
will assume, since this issue is clearly discussed, that you will
be responsible for understanding and applying it.
1. Any fact that is not common knowledge, any idea, phrase, or
paraphrase that is taken from a printed source, from a lecture,
sermon, or radio broadcast must be documented.
2. Any work submitted in English 102 will be understood to be
the work of the student submitting it and his work alone. Taking
credit for someone else's proofreading ability, suggestions,
ideas, or words is plagiarism. An exception to this definition is
group work assigned and directed by the instructor. Unless the
instructor assigns such work, students should do their own
writing, revising, and proofreading.
3. If a student has availed himself of the services of a tutor,
officially designated by the university or unofficially, it will be
understood that the tutor will confine his services to helping a
student develop and express his or her own thoughts, making
suggestions to help the student fulfill the assignment guidelines,
and supplementing the work that the instructor does with the
student in conferences and class. A tutor in his proper role
never does work for a student nor supplies specific words,
phrases, or ideas. The student bears responsibility for his own
work. He must not submit a tutor's work as his own, and he
must not blame his errors on the tutor.
4. If the student submits a paper typed by someone other than
himself, it will be understood that the typist has not changed
anything from the student's script or rough draft. The student
may not blame the typist for errors not corrected on the draft
given to the instructor.
5. "Self plagiarism" is when a student submits written work
from another course or another context as if it is original work
for a current writing assignment. This is not acceptable.
Liberty Online Writing Center
The Liberty Online Writing Center also provides additional
writing help, including Online Tutoring Service that is offered
FREE to students! Bottom of For Yo Likewise, your instructor
is an important resource. Contact him or her if you need help or
do not understand something.
General Requirements for all Literary Essays
(Check the boxes to make sure every requirement is met)
· Cover Page (see sample format below; be sure to fill the
coverpage with all the necessary information)
· Thesis statement and outline page. This is required for each
literary essay/assignment. (Thesis statement must be a cogent,
one or two sentences stating the main idea of essay).
· Proper essay title, headings, page numbering, and essay
format. (If you completed ENGL 101 with Liberty University,
this information will be in the Prentice Hall Reference Guide.
Otherwise, acquire a good Handbook that details proper format
for essays. You also will find sample literary essays in your
textbook, Literature: An Introduction to Fiction, Poetry, Drama,
and Writing. Compact Interactive Edition)
· Each essay is double-spaced, with ragged right edge (justify
off) with a 1-inch margin on all 4 sides including the bottom
margin.
· Essays are written in standard essay format that includes an
introduction, body, and conclusion. The introduction includes
the thesis statement, and the conclusion does not introduce
brand new material or information.
· The title of the work being discussed and the author’s full
name appear in the introduction. After that the author’s last
name (only) is used.
· Each paragraph is properly developed with textual evidence,
details, analysis, etc.
· Present tense is used, as required for writing about literature.
· Titles of short stories and poems are placed in quotation
marks; titles of books and plays are italicized, as required by
MLA format (APA or CM/Turabian is acceptable).
· Each essay uses third person as required in formal essays and
avoids the use of first person (such as “in this paper I will
discuss...).
· Each essay is formal and avoids the following:
a. Slang (e.g. kids, okay, guys, etc.),
b. Second person (e.g. you),
c. Contractions (e.g. can’t, wouldn’t), and
d. Glaring errors (e.g. sentence fragments, comma errors,
subject/verb agreement, pronoun antecedent agreement, etc.).
· Proper MLA documentation format is used (APA or
CM/Turabian is acceptable).
· Essay uses only academic sources. Cliff Notes, Masterplots,
Wikipedia, 123HelpMe and other non-scholarly online material,
etc., are not acceptable sources.
· Quotes, summaries, and paraphrases are all documented;
otherwise, it will be regarded as plagiarism and thus a failing
grade.
· Essay is not a string or pastiche of quotes.
· Works Cited page includes all sources cited in the paper.
· Retain a copy of each essay for your own records.
Use the following template as a cover page for each written
essay:
Title of Assignment
COURSE # and
TITLE_________________________________________
(e.g. ENGL 102: Literature and Composition)
SEMESTER OF ENROLLMENT_______________________
(e.g. Fall D 2009)
NAME_________________________________________ID
#____________
WRITING STYLE
USED________________________________________________
_____
(e.g. MLA)
Page 1 of 3
package bmarina;
import java.text.*;
public class EmployeeTester {
public static void main(String[] args) {
Employee emp1 = new Employee("Jim", "1234", "Terre
Haute", "456-5789");
System.out.println(emp1.tellAboutSelf());
double wage = emp1.wage(40, 10);
System.out.println(wage);
double tax = emp1.tax(400.0, .20);
System.out.println(emp1.tax(400.0, .20));
System.out.println(emp1.tax(emp1.wage(40, 10), .20));
NumberFormat currencyFormat =
NumberFormat.getCurrencyInstance();
System.out.println("Wage is " +
currencyFormat.format(wage));
System.out.println("Tax is " +
currencyFormat.format(emp1.tax(emp1.wage(40, 10),
.20)));
System.out.println("Tax is " +
currencyFormat.format(tax));
DecimalFormat decimalFormat = new
DecimalFormat("##,##0.00");
System.out.println("Tax is " +
decimalFormat.format(tax));
System.out.println("Random number " +
decimalFormat.format(999123456.78912));
}
}
Add Comment
Employee New
Posted by Ayman Abuhamdieh at Tuesday, November 12, 2013
3:12:17 PM EST
//Written by Ayman
package bmarina;
public class Employee {
//attributes
private String name;
private String IDNo;
private String address;
private String phoneNo;
//parameterized constructor
public Employee(String newName, String newIDNo, String
newAddress,
String newPhoneNo){
setName(newName);
setIDNo(newIDNo);
setAddress(newAddress);
setPhoneNo(newPhoneNo);
}
//wage method
public double wage(double hoursWorked, double
ratePerHour) {
double pay = hoursWorked * ratePerHour;
return pay;
}
// tax method, tax rate should be a percentage
public double tax(double aWage, double taxRate){
double taxAmount = aWage * taxRate;
return taxAmount;
}
// setter methods
public void setName(String aName) {
name = aName;
}
public void setIDNo(String anIDNo) {
IDNo = anIDNo;
}
public void setAddress(String anAddress) {
address = anAddress;
}
public void setPhoneNo(String aPhoneNo) {
phoneNo = aPhoneNo;
}
//getter methods
public String getName() {
return name;
}
public String getIDNo() {
return IDNo;
}
public String getAddress() {
return address;
}
public String getPhoneNo() {
return phoneNo;
}
public String tellAboutSelf() {
String info = "Employee name is " + getName() + ", nID#
is " + getIDNo()
+", naddress is " + getAddress() + " nand phone# is "
+ getPhoneNo();
return info;
}
}
ENGL 102
Poetry Essay Instructions
In Module/Week 5, you will write a 750-word (about 3–4-pages)
essay that analyzes 1 poem from the Poetry Unit. Before you
begin writing the essay, carefully read the guidelines for
developing your paper topic that are given below. Review the
Poetry Essay Grading Rubric to see how your submission will
be graded. Gather all of your information, plan the direction of
your essay, and organize your ideas by developing a 1-page
thesis statement and outline for your essay as you did for your
Fiction Essay. Format the thesis statement and the outline in a
single Word document using current MLA, APA, or Turabian
style (whichever corresponds to your degree program).
The Poetry Essay is due Module/Week 5 and must include a title
page (see the General Writing Requirements), a thesis/outline
page, and the essay itself followed by a Works Cited/References
page of any primary or secondary texts you cite in the essay.
Guidelines for Developing Your Paper Topic
Chapter 40 in your textbook provides some helpful pointers for
reading poems, taking notes, brainstorming, developing a
clearly-defined thesis statement, preparing an outline, writing a
cogent literary analysis of a poem, and citing your sources. This
chapter specifically addresses Robert Frost’s “Design,” which is
studied in this course, so be sure to read it before doing any
further work for this assignment. Also, take notice of the
example of a poetry thesis and outline on pp. 1,385–1,386.
Choose 1 of the poems from the list below to address in your
essay:
· The Lamb” or “The Tiger” or “The Chimney Sweeper” by
William Blake.
· “Batter my heart, three-personed God,” or “Death Be Not
Proud” by John Donne (watch the video lecture on John
Donne’s “Batter my heart” for more ideas to help you write
your essay on this poem).
· “Journey of the Magi” by T. S. Eliot.
· “God’s Grandeur” or “Pied Beauty” or “Spring” by Gerard
Manley Hopkins.
· “Ode on a Grecian Urn” or “Ode to a Nightingale” by John
Keats.
· “Ozymandias” by Percy Bysshe Shelley.
· “My Last Duchess” by Robert Browning (watch the video
lecture on Robert Browning’s “My Last Duchess” for more
ideas to help you write your essay on this poem).
· “Sailing to Byzantium” by William Butler Yeats.
· “The Road Not Taken” or “Stopping by Woods on a Snowy
Evening” by Robert Frost
· “It Sifts from Leaden Sieves” or “There’s No Frigate Like A
Book” by Emily Dickinson (Read Gilbert and Gubar’s “The
Freedom of Emily Dickinson” for more ideas to help you write
your essay on Dickinson’s poetry).
· “Ulysses” by Alfred Lord Tennyson
· “That Time of Year” (Sonnet 73) by William Shakespeare
(watch the video lecture on William Shakespeare’s “Sonnet 73”
for more ideas to help you write your essay on this poem).
Consider the following questions for the poem that you have
chosen:
· What is or are the themes of the poem?
· Is there a literal setting or situation in the poem? What lines
from the poem tell the reader this information? What details
does the author include?
· Is the setting symbolic?
· How would you describe the mood of the poem? What
elements contribute to this mood?
· Is the title significant to the poem’s content or meaning?
How?
· What major literary devices and figures of speech does the
poet use to communicate the theme(s)?
· How are rhyme and other metrical devices used in the poem?
Do they support the poem’s overall meaning? Why or why not?
· Is the identity of the poem’s narrator clear? How would you
describe this person? What information, if any, does the author
provide about him or her?
· Does the narrator seem to have a certain opinion of or attitude
about the poem’s subject matter? How can you tell?
NOTE: These questions are a means of getting your thoughts in
order when you are collecting information for your essay. You
do not need to include the answers to all of these questions in
your essay; only include those answers that directly support
your thesis statement.
Page 1 of 2

More Related Content

Similar to ENGL 102General Writing resources and RequirementsNOTE Us.docx

Ewrt 1AT class 9
Ewrt 1AT class 9Ewrt 1AT class 9
Ewrt 1AT class 9
kimpalmore
 
 The draft addresses the question or issue in a way that
 The draft addresses the question or issue in a way that  The draft addresses the question or issue in a way that
 The draft addresses the question or issue in a way that
ssuser774ad41
 
ENGL 102Research Paper InstructionsYou must complete the requi.docx
ENGL 102Research Paper InstructionsYou must complete the requi.docxENGL 102Research Paper InstructionsYou must complete the requi.docx
ENGL 102Research Paper InstructionsYou must complete the requi.docx
khanpaulita
 
Write a 3-5 page paper in which you1. Candidly assess yourself .docx
Write a 3-5 page paper in which you1. Candidly assess yourself .docxWrite a 3-5 page paper in which you1. Candidly assess yourself .docx
Write a 3-5 page paper in which you1. Candidly assess yourself .docx
ericbrooks84875
 
Eng 101 e3 The Summary + Response” ESSAY Writing based on read.docx
Eng 101 e3 The Summary + Response” ESSAY Writing based on read.docxEng 101 e3 The Summary + Response” ESSAY Writing based on read.docx
Eng 101 e3 The Summary + Response” ESSAY Writing based on read.docx
SALU18
 
eapp-lesson1-copy-221120025408-56457dc1.pptx
eapp-lesson1-copy-221120025408-56457dc1.pptxeapp-lesson1-copy-221120025408-56457dc1.pptx
eapp-lesson1-copy-221120025408-56457dc1.pptx
EVAMAEBONGHANOY5
 
Due by 1159pm on Sunday of Unit 7. For the f.docx
  Due  by 1159pm on Sunday of Unit 7.  For the f.docx  Due  by 1159pm on Sunday of Unit 7.  For the f.docx
Due by 1159pm on Sunday of Unit 7. For the f.docx
aryan532920
 
Advice on academic writing
Advice on academic writingAdvice on academic writing
Advice on academic writing
Mariana Affre
 
Ewrt 1 c essay #3 assignment copy
Ewrt 1 c essay #3 assignment copyEwrt 1 c essay #3 assignment copy
Ewrt 1 c essay #3 assignment copy
jordanlachance
 
Communication in the .docx
Communication in the .docxCommunication in the .docx
Communication in the .docx
adkinspaige22
 
REQUIREMENTS RESEARCH PROJECTNow its time to begin (two) major .docx
REQUIREMENTS RESEARCH PROJECTNow its time to begin (two) major .docxREQUIREMENTS RESEARCH PROJECTNow its time to begin (two) major .docx
REQUIREMENTS RESEARCH PROJECTNow its time to begin (two) major .docx
sodhi3
 
Ewrt 1 c essay #3 assignment
Ewrt 1 c essay #3 assignmentEwrt 1 c essay #3 assignment
Ewrt 1 c essay #3 assignment
jordanlachance
 
Issue Analysis EssayWorkshop on Draft IIIntroDo you ha.docx
Issue Analysis EssayWorkshop on Draft IIIntroDo you ha.docxIssue Analysis EssayWorkshop on Draft IIIntroDo you ha.docx
Issue Analysis EssayWorkshop on Draft IIIntroDo you ha.docx
vrickens
 
Summary Exercise InstructionsFor this assignment only, there is .docx
Summary Exercise InstructionsFor this assignment only, there is .docxSummary Exercise InstructionsFor this assignment only, there is .docx
Summary Exercise InstructionsFor this assignment only, there is .docx
picklesvalery
 
ENGL 101Essay 3 ThesisOutline Instructions and ChecklistCause.docx
ENGL 101Essay 3 ThesisOutline Instructions and ChecklistCause.docxENGL 101Essay 3 ThesisOutline Instructions and ChecklistCause.docx
ENGL 101Essay 3 ThesisOutline Instructions and ChecklistCause.docx
SALU18
 
M8 d discussioninstruction please use apa style and in test cit
M8 d discussioninstruction please use apa style and in test citM8 d discussioninstruction please use apa style and in test cit
M8 d discussioninstruction please use apa style and in test cit
simba35
 
Advice on academic writing
Advice on academic writingAdvice on academic writing
Advice on academic writing
vanesalonghi
 
ACADEMIC TEXT STRUCTURE.pptx
ACADEMIC TEXT STRUCTURE.pptxACADEMIC TEXT STRUCTURE.pptx
ACADEMIC TEXT STRUCTURE.pptx
MikeeMagss
 
Presentacion
PresentacionPresentacion
Presentacion
DavidVega160
 
Week 3 Assignment Complete homework exercises in Word o.docx
Week 3 Assignment  Complete homework exercises in Word o.docxWeek 3 Assignment  Complete homework exercises in Word o.docx
Week 3 Assignment Complete homework exercises in Word o.docx
cockekeshia
 

Similar to ENGL 102General Writing resources and RequirementsNOTE Us.docx (20)

Ewrt 1AT class 9
Ewrt 1AT class 9Ewrt 1AT class 9
Ewrt 1AT class 9
 
 The draft addresses the question or issue in a way that
 The draft addresses the question or issue in a way that  The draft addresses the question or issue in a way that
 The draft addresses the question or issue in a way that
 
ENGL 102Research Paper InstructionsYou must complete the requi.docx
ENGL 102Research Paper InstructionsYou must complete the requi.docxENGL 102Research Paper InstructionsYou must complete the requi.docx
ENGL 102Research Paper InstructionsYou must complete the requi.docx
 
Write a 3-5 page paper in which you1. Candidly assess yourself .docx
Write a 3-5 page paper in which you1. Candidly assess yourself .docxWrite a 3-5 page paper in which you1. Candidly assess yourself .docx
Write a 3-5 page paper in which you1. Candidly assess yourself .docx
 
Eng 101 e3 The Summary + Response” ESSAY Writing based on read.docx
Eng 101 e3 The Summary + Response” ESSAY Writing based on read.docxEng 101 e3 The Summary + Response” ESSAY Writing based on read.docx
Eng 101 e3 The Summary + Response” ESSAY Writing based on read.docx
 
eapp-lesson1-copy-221120025408-56457dc1.pptx
eapp-lesson1-copy-221120025408-56457dc1.pptxeapp-lesson1-copy-221120025408-56457dc1.pptx
eapp-lesson1-copy-221120025408-56457dc1.pptx
 
Due by 1159pm on Sunday of Unit 7. For the f.docx
  Due  by 1159pm on Sunday of Unit 7.  For the f.docx  Due  by 1159pm on Sunday of Unit 7.  For the f.docx
Due by 1159pm on Sunday of Unit 7. For the f.docx
 
Advice on academic writing
Advice on academic writingAdvice on academic writing
Advice on academic writing
 
Ewrt 1 c essay #3 assignment copy
Ewrt 1 c essay #3 assignment copyEwrt 1 c essay #3 assignment copy
Ewrt 1 c essay #3 assignment copy
 
Communication in the .docx
Communication in the .docxCommunication in the .docx
Communication in the .docx
 
REQUIREMENTS RESEARCH PROJECTNow its time to begin (two) major .docx
REQUIREMENTS RESEARCH PROJECTNow its time to begin (two) major .docxREQUIREMENTS RESEARCH PROJECTNow its time to begin (two) major .docx
REQUIREMENTS RESEARCH PROJECTNow its time to begin (two) major .docx
 
Ewrt 1 c essay #3 assignment
Ewrt 1 c essay #3 assignmentEwrt 1 c essay #3 assignment
Ewrt 1 c essay #3 assignment
 
Issue Analysis EssayWorkshop on Draft IIIntroDo you ha.docx
Issue Analysis EssayWorkshop on Draft IIIntroDo you ha.docxIssue Analysis EssayWorkshop on Draft IIIntroDo you ha.docx
Issue Analysis EssayWorkshop on Draft IIIntroDo you ha.docx
 
Summary Exercise InstructionsFor this assignment only, there is .docx
Summary Exercise InstructionsFor this assignment only, there is .docxSummary Exercise InstructionsFor this assignment only, there is .docx
Summary Exercise InstructionsFor this assignment only, there is .docx
 
ENGL 101Essay 3 ThesisOutline Instructions and ChecklistCause.docx
ENGL 101Essay 3 ThesisOutline Instructions and ChecklistCause.docxENGL 101Essay 3 ThesisOutline Instructions and ChecklistCause.docx
ENGL 101Essay 3 ThesisOutline Instructions and ChecklistCause.docx
 
M8 d discussioninstruction please use apa style and in test cit
M8 d discussioninstruction please use apa style and in test citM8 d discussioninstruction please use apa style and in test cit
M8 d discussioninstruction please use apa style and in test cit
 
Advice on academic writing
Advice on academic writingAdvice on academic writing
Advice on academic writing
 
ACADEMIC TEXT STRUCTURE.pptx
ACADEMIC TEXT STRUCTURE.pptxACADEMIC TEXT STRUCTURE.pptx
ACADEMIC TEXT STRUCTURE.pptx
 
Presentacion
PresentacionPresentacion
Presentacion
 
Week 3 Assignment Complete homework exercises in Word o.docx
Week 3 Assignment  Complete homework exercises in Word o.docxWeek 3 Assignment  Complete homework exercises in Word o.docx
Week 3 Assignment Complete homework exercises in Word o.docx
 

More from YASHU40

April 19, 2018 Course #Title MATU-203 – Introduction.docx
April 19, 2018  Course #Title  MATU-203 – Introduction.docxApril 19, 2018  Course #Title  MATU-203 – Introduction.docx
April 19, 2018 Course #Title MATU-203 – Introduction.docx
YASHU40
 
APUS Assignment Rubric Undergraduate Level EXEMPLARYLEVEL4.docx
APUS Assignment Rubric Undergraduate Level EXEMPLARYLEVEL4.docxAPUS Assignment Rubric Undergraduate Level EXEMPLARYLEVEL4.docx
APUS Assignment Rubric Undergraduate Level EXEMPLARYLEVEL4.docx
YASHU40
 
Appropriate TopicsThe Research Report, select one of the fo.docx
Appropriate TopicsThe Research Report, select one of the fo.docxAppropriate TopicsThe Research Report, select one of the fo.docx
Appropriate TopicsThe Research Report, select one of the fo.docx
YASHU40
 
Approaches, Issues, Applications edited by Steffen.docx
Approaches, Issues, Applications edited by Steffen.docxApproaches, Issues, Applications edited by Steffen.docx
Approaches, Issues, Applications edited by Steffen.docx
YASHU40
 
Archaic sapiens, Neandertals and the Last 10,000 YearsWhat.docx
Archaic sapiens, Neandertals and the Last 10,000 YearsWhat.docxArchaic sapiens, Neandertals and the Last 10,000 YearsWhat.docx
Archaic sapiens, Neandertals and the Last 10,000 YearsWhat.docx
YASHU40
 
Applying Evidence-Based Practice”Population groups with differe.docx
Applying Evidence-Based Practice”Population groups with differe.docxApplying Evidence-Based Practice”Population groups with differe.docx
Applying Evidence-Based Practice”Population groups with differe.docx
YASHU40
 
Applying Learning Theory to LifePrior to beginning work on t.docx
Applying Learning Theory to LifePrior to beginning work on t.docxApplying Learning Theory to LifePrior to beginning work on t.docx
Applying Learning Theory to LifePrior to beginning work on t.docx
YASHU40
 
Apply the Symbolic Interaction Perspective to ImmigrationD.docx
Apply the Symbolic Interaction Perspective to ImmigrationD.docxApply the Symbolic Interaction Perspective to ImmigrationD.docx
Apply the Symbolic Interaction Perspective to ImmigrationD.docx
YASHU40
 
April is a fourth grader with a language impairment, but no physical.docx
April is a fourth grader with a language impairment, but no physical.docxApril is a fourth grader with a language impairment, but no physical.docx
April is a fourth grader with a language impairment, but no physical.docx
YASHU40
 
Approximately 1000 words.Synthesizing the theories (you do not.docx
Approximately 1000 words.Synthesizing the theories (you do not.docxApproximately 1000 words.Synthesizing the theories (you do not.docx
Approximately 1000 words.Synthesizing the theories (you do not.docx
YASHU40
 
Approaches to Forecasting Policy Outcomes Please respond to th.docx
Approaches to Forecasting Policy Outcomes Please respond to th.docxApproaches to Forecasting Policy Outcomes Please respond to th.docx
Approaches to Forecasting Policy Outcomes Please respond to th.docx
YASHU40
 
Apply the course concepts of the dark side of self-esteem and .docx
Apply the course concepts of the dark side of self-esteem and .docxApply the course concepts of the dark side of self-esteem and .docx
Apply the course concepts of the dark side of self-esteem and .docx
YASHU40
 
Apply information from the Aquifer Case Study to answer the foll.docx
Apply information from the Aquifer Case Study to answer the foll.docxApply information from the Aquifer Case Study to answer the foll.docx
Apply information from the Aquifer Case Study to answer the foll.docx
YASHU40
 
Apply appropriate elements of the U.S. legal system and the U.S. Con.docx
Apply appropriate elements of the U.S. legal system and the U.S. Con.docxApply appropriate elements of the U.S. legal system and the U.S. Con.docx
Apply appropriate elements of the U.S. legal system and the U.S. Con.docx
YASHU40
 
APA format Analysis of the Culture using a Culturally Competent.docx
APA format Analysis of the Culture using a Culturally Competent.docxAPA format Analysis of the Culture using a Culturally Competent.docx
APA format Analysis of the Culture using a Culturally Competent.docx
YASHU40
 
APA less than 10 similarityWeek 7 Discussion Question Chapter.docx
APA less than 10  similarityWeek 7 Discussion Question Chapter.docxAPA less than 10  similarityWeek 7 Discussion Question Chapter.docx
APA less than 10 similarityWeek 7 Discussion Question Chapter.docx
YASHU40
 
APPLE 13Business Analytics Plan for BIAM300Author Miguel .docx
APPLE 13Business Analytics Plan for BIAM300Author Miguel .docxAPPLE 13Business Analytics Plan for BIAM300Author Miguel .docx
APPLE 13Business Analytics Plan for BIAM300Author Miguel .docx
YASHU40
 
APAless than 10 similarityWeek 4 Discussion Question .docx
APAless than 10  similarityWeek 4 Discussion Question .docxAPAless than 10  similarityWeek 4 Discussion Question .docx
APAless than 10 similarityWeek 4 Discussion Question .docx
YASHU40
 
APA Style [Sources, included] single-spaced, one to two-page paper r.docx
APA Style [Sources, included] single-spaced, one to two-page paper r.docxAPA Style [Sources, included] single-spaced, one to two-page paper r.docx
APA Style [Sources, included] single-spaced, one to two-page paper r.docx
YASHU40
 
Application Case Siemens Builds a Strategy-Oriented HR System.docx
Application Case Siemens Builds a Strategy-Oriented HR System.docxApplication Case Siemens Builds a Strategy-Oriented HR System.docx
Application Case Siemens Builds a Strategy-Oriented HR System.docx
YASHU40
 

More from YASHU40 (20)

April 19, 2018 Course #Title MATU-203 – Introduction.docx
April 19, 2018  Course #Title  MATU-203 – Introduction.docxApril 19, 2018  Course #Title  MATU-203 – Introduction.docx
April 19, 2018 Course #Title MATU-203 – Introduction.docx
 
APUS Assignment Rubric Undergraduate Level EXEMPLARYLEVEL4.docx
APUS Assignment Rubric Undergraduate Level EXEMPLARYLEVEL4.docxAPUS Assignment Rubric Undergraduate Level EXEMPLARYLEVEL4.docx
APUS Assignment Rubric Undergraduate Level EXEMPLARYLEVEL4.docx
 
Appropriate TopicsThe Research Report, select one of the fo.docx
Appropriate TopicsThe Research Report, select one of the fo.docxAppropriate TopicsThe Research Report, select one of the fo.docx
Appropriate TopicsThe Research Report, select one of the fo.docx
 
Approaches, Issues, Applications edited by Steffen.docx
Approaches, Issues, Applications edited by Steffen.docxApproaches, Issues, Applications edited by Steffen.docx
Approaches, Issues, Applications edited by Steffen.docx
 
Archaic sapiens, Neandertals and the Last 10,000 YearsWhat.docx
Archaic sapiens, Neandertals and the Last 10,000 YearsWhat.docxArchaic sapiens, Neandertals and the Last 10,000 YearsWhat.docx
Archaic sapiens, Neandertals and the Last 10,000 YearsWhat.docx
 
Applying Evidence-Based Practice”Population groups with differe.docx
Applying Evidence-Based Practice”Population groups with differe.docxApplying Evidence-Based Practice”Population groups with differe.docx
Applying Evidence-Based Practice”Population groups with differe.docx
 
Applying Learning Theory to LifePrior to beginning work on t.docx
Applying Learning Theory to LifePrior to beginning work on t.docxApplying Learning Theory to LifePrior to beginning work on t.docx
Applying Learning Theory to LifePrior to beginning work on t.docx
 
Apply the Symbolic Interaction Perspective to ImmigrationD.docx
Apply the Symbolic Interaction Perspective to ImmigrationD.docxApply the Symbolic Interaction Perspective to ImmigrationD.docx
Apply the Symbolic Interaction Perspective to ImmigrationD.docx
 
April is a fourth grader with a language impairment, but no physical.docx
April is a fourth grader with a language impairment, but no physical.docxApril is a fourth grader with a language impairment, but no physical.docx
April is a fourth grader with a language impairment, but no physical.docx
 
Approximately 1000 words.Synthesizing the theories (you do not.docx
Approximately 1000 words.Synthesizing the theories (you do not.docxApproximately 1000 words.Synthesizing the theories (you do not.docx
Approximately 1000 words.Synthesizing the theories (you do not.docx
 
Approaches to Forecasting Policy Outcomes Please respond to th.docx
Approaches to Forecasting Policy Outcomes Please respond to th.docxApproaches to Forecasting Policy Outcomes Please respond to th.docx
Approaches to Forecasting Policy Outcomes Please respond to th.docx
 
Apply the course concepts of the dark side of self-esteem and .docx
Apply the course concepts of the dark side of self-esteem and .docxApply the course concepts of the dark side of self-esteem and .docx
Apply the course concepts of the dark side of self-esteem and .docx
 
Apply information from the Aquifer Case Study to answer the foll.docx
Apply information from the Aquifer Case Study to answer the foll.docxApply information from the Aquifer Case Study to answer the foll.docx
Apply information from the Aquifer Case Study to answer the foll.docx
 
Apply appropriate elements of the U.S. legal system and the U.S. Con.docx
Apply appropriate elements of the U.S. legal system and the U.S. Con.docxApply appropriate elements of the U.S. legal system and the U.S. Con.docx
Apply appropriate elements of the U.S. legal system and the U.S. Con.docx
 
APA format Analysis of the Culture using a Culturally Competent.docx
APA format Analysis of the Culture using a Culturally Competent.docxAPA format Analysis of the Culture using a Culturally Competent.docx
APA format Analysis of the Culture using a Culturally Competent.docx
 
APA less than 10 similarityWeek 7 Discussion Question Chapter.docx
APA less than 10  similarityWeek 7 Discussion Question Chapter.docxAPA less than 10  similarityWeek 7 Discussion Question Chapter.docx
APA less than 10 similarityWeek 7 Discussion Question Chapter.docx
 
APPLE 13Business Analytics Plan for BIAM300Author Miguel .docx
APPLE 13Business Analytics Plan for BIAM300Author Miguel .docxAPPLE 13Business Analytics Plan for BIAM300Author Miguel .docx
APPLE 13Business Analytics Plan for BIAM300Author Miguel .docx
 
APAless than 10 similarityWeek 4 Discussion Question .docx
APAless than 10  similarityWeek 4 Discussion Question .docxAPAless than 10  similarityWeek 4 Discussion Question .docx
APAless than 10 similarityWeek 4 Discussion Question .docx
 
APA Style [Sources, included] single-spaced, one to two-page paper r.docx
APA Style [Sources, included] single-spaced, one to two-page paper r.docxAPA Style [Sources, included] single-spaced, one to two-page paper r.docx
APA Style [Sources, included] single-spaced, one to two-page paper r.docx
 
Application Case Siemens Builds a Strategy-Oriented HR System.docx
Application Case Siemens Builds a Strategy-Oriented HR System.docxApplication Case Siemens Builds a Strategy-Oriented HR System.docx
Application Case Siemens Builds a Strategy-Oriented HR System.docx
 

Recently uploaded

CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
camakaiclarkmusic
 
How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17
Celine George
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
WaniBasim
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
Academy of Science of South Africa
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
Nicholas Montgomery
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
Colégio Santa Teresinha
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
Israel Genealogy Research Association
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Excellence Foundation for South Sudan
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
PECB
 
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
IreneSebastianRueco1
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
TechSoup
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
Dr. Mulla Adam Ali
 
The History of Stoke Newington Street Names
The History of Stoke Newington Street NamesThe History of Stoke Newington Street Names
The History of Stoke Newington Street Names
History of Stoke Newington
 
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
mulvey2
 
S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
tarandeep35
 
Smart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICTSmart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICT
simonomuemu
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
adhitya5119
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
adhitya5119
 
Digital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments UnitDigital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments Unit
chanes7
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
AyyanKhan40
 

Recently uploaded (20)

CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
 
How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
 
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
 
The History of Stoke Newington Street Names
The History of Stoke Newington Street NamesThe History of Stoke Newington Street Names
The History of Stoke Newington Street Names
 
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
 
S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
 
Smart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICTSmart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICT
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
 
Digital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments UnitDigital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments Unit
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
 

ENGL 102General Writing resources and RequirementsNOTE Us.docx

  • 1. ENGL 102 General Writing resources and Requirements NOTE: Use this as reference for each writing assignment! Your grade may be adversely affected if you do not follow all of these requirements. Email or call your instructor if you have questions. The required literary essays for this course demand careful planning, drafting, revising/editing, and correct documentation. The following resources and requirements provide instruction on writing, research, and avoiding plagiarism. Carefully review them before writing your literary essays. Plagiarism Plagiarism encompasses more than the use of printed sources without giving proper credit. It means handing in writing in the name of one person that another person has composed, revised, edited, or proofread without the instructor's approval. Accordingly, the following guidelines are set down, and you must study and understand them from the outset. The instructor will assume, since this issue is clearly discussed, that you will be responsible for understanding and applying it. 1. Any fact that is not common knowledge, any idea, phrase, or paraphrase that is taken from a printed source, from a lecture, sermon, or radio broadcast must be documented. 2. Any work submitted in English 102 will be understood to be the work of the student submitting it and his work alone. Taking credit for someone else's proofreading ability, suggestions, ideas, or words is plagiarism. An exception to this definition is group work assigned and directed by the instructor. Unless the instructor assigns such work, students should do their own
  • 2. writing, revising, and proofreading. 3. If a student has availed himself of the services of a tutor, officially designated by the university or unofficially, it will be understood that the tutor will confine his services to helping a student develop and express his or her own thoughts, making suggestions to help the student fulfill the assignment guidelines, and supplementing the work that the instructor does with the student in conferences and class. A tutor in his proper role never does work for a student nor supplies specific words, phrases, or ideas. The student bears responsibility for his own work. He must not submit a tutor's work as his own, and he must not blame his errors on the tutor. 4. If the student submits a paper typed by someone other than himself, it will be understood that the typist has not changed anything from the student's script or rough draft. The student may not blame the typist for errors not corrected on the draft given to the instructor. 5. "Self plagiarism" is when a student submits written work from another course or another context as if it is original work for a current writing assignment. This is not acceptable. Liberty Online Writing Center The Liberty Online Writing Center also provides additional writing help, including Online Tutoring Service that is offered FREE to students! Bottom of For Yo Likewise, your instructor is an important resource. Contact him or her if you need help or do not understand something. General Requirements for all Literary Essays (Check the boxes to make sure every requirement is met) · Cover Page (see sample format below; be sure to fill the coverpage with all the necessary information) · Thesis statement and outline page. This is required for each literary essay/assignment. (Thesis statement must be a cogent, one or two sentences stating the main idea of essay).
  • 3. · Proper essay title, headings, page numbering, and essay format. (If you completed ENGL 101 with Liberty University, this information will be in the Prentice Hall Reference Guide. Otherwise, acquire a good Handbook that details proper format for essays. You also will find sample literary essays in your textbook, Literature: An Introduction to Fiction, Poetry, Drama, and Writing. Compact Interactive Edition) · Each essay is double-spaced, with ragged right edge (justify off) with a 1-inch margin on all 4 sides including the bottom margin. · Essays are written in standard essay format that includes an introduction, body, and conclusion. The introduction includes the thesis statement, and the conclusion does not introduce brand new material or information. · The title of the work being discussed and the author’s full name appear in the introduction. After that the author’s last name (only) is used. · Each paragraph is properly developed with textual evidence, details, analysis, etc. · Present tense is used, as required for writing about literature. · Titles of short stories and poems are placed in quotation marks; titles of books and plays are italicized, as required by MLA format (APA or CM/Turabian is acceptable). · Each essay uses third person as required in formal essays and avoids the use of first person (such as “in this paper I will discuss...). · Each essay is formal and avoids the following: a. Slang (e.g. kids, okay, guys, etc.), b. Second person (e.g. you),
  • 4. c. Contractions (e.g. can’t, wouldn’t), and d. Glaring errors (e.g. sentence fragments, comma errors, subject/verb agreement, pronoun antecedent agreement, etc.). · Proper MLA documentation format is used (APA or CM/Turabian is acceptable). · Essay uses only academic sources. Cliff Notes, Masterplots, Wikipedia, 123HelpMe and other non-scholarly online material, etc., are not acceptable sources. · Quotes, summaries, and paraphrases are all documented; otherwise, it will be regarded as plagiarism and thus a failing grade. · Essay is not a string or pastiche of quotes. · Works Cited page includes all sources cited in the paper. · Retain a copy of each essay for your own records. Use the following template as a cover page for each written essay: Title of Assignment COURSE # and TITLE_________________________________________ (e.g. ENGL 102: Literature and Composition) SEMESTER OF ENROLLMENT_______________________
  • 5. (e.g. Fall D 2009) NAME_________________________________________ID #____________ WRITING STYLE USED________________________________________________ _____ (e.g. MLA) Page 1 of 3 package bmarina; import java.text.*; public class EmployeeTester { public static void main(String[] args) { Employee emp1 = new Employee("Jim", "1234", "Terre Haute", "456-5789"); System.out.println(emp1.tellAboutSelf()); double wage = emp1.wage(40, 10); System.out.println(wage); double tax = emp1.tax(400.0, .20); System.out.println(emp1.tax(400.0, .20)); System.out.println(emp1.tax(emp1.wage(40, 10), .20)); NumberFormat currencyFormat = NumberFormat.getCurrencyInstance(); System.out.println("Wage is " + currencyFormat.format(wage)); System.out.println("Tax is " +
  • 6. currencyFormat.format(emp1.tax(emp1.wage(40, 10), .20))); System.out.println("Tax is " + currencyFormat.format(tax)); DecimalFormat decimalFormat = new DecimalFormat("##,##0.00"); System.out.println("Tax is " + decimalFormat.format(tax)); System.out.println("Random number " + decimalFormat.format(999123456.78912)); } } Add Comment Employee New Posted by Ayman Abuhamdieh at Tuesday, November 12, 2013 3:12:17 PM EST //Written by Ayman package bmarina; public class Employee { //attributes private String name; private String IDNo; private String address; private String phoneNo; //parameterized constructor public Employee(String newName, String newIDNo, String newAddress, String newPhoneNo){ setName(newName); setIDNo(newIDNo); setAddress(newAddress); setPhoneNo(newPhoneNo); } //wage method
  • 7. public double wage(double hoursWorked, double ratePerHour) { double pay = hoursWorked * ratePerHour; return pay; } // tax method, tax rate should be a percentage public double tax(double aWage, double taxRate){ double taxAmount = aWage * taxRate; return taxAmount; } // setter methods public void setName(String aName) { name = aName; } public void setIDNo(String anIDNo) { IDNo = anIDNo; } public void setAddress(String anAddress) { address = anAddress; } public void setPhoneNo(String aPhoneNo) { phoneNo = aPhoneNo; } //getter methods public String getName() { return name; } public String getIDNo() { return IDNo; } public String getAddress() { return address; } public String getPhoneNo() { return phoneNo; }
  • 8. public String tellAboutSelf() { String info = "Employee name is " + getName() + ", nID# is " + getIDNo() +", naddress is " + getAddress() + " nand phone# is " + getPhoneNo(); return info; } } ENGL 102 Poetry Essay Instructions In Module/Week 5, you will write a 750-word (about 3–4-pages) essay that analyzes 1 poem from the Poetry Unit. Before you begin writing the essay, carefully read the guidelines for developing your paper topic that are given below. Review the Poetry Essay Grading Rubric to see how your submission will be graded. Gather all of your information, plan the direction of your essay, and organize your ideas by developing a 1-page thesis statement and outline for your essay as you did for your Fiction Essay. Format the thesis statement and the outline in a single Word document using current MLA, APA, or Turabian style (whichever corresponds to your degree program). The Poetry Essay is due Module/Week 5 and must include a title page (see the General Writing Requirements), a thesis/outline page, and the essay itself followed by a Works Cited/References page of any primary or secondary texts you cite in the essay. Guidelines for Developing Your Paper Topic Chapter 40 in your textbook provides some helpful pointers for reading poems, taking notes, brainstorming, developing a clearly-defined thesis statement, preparing an outline, writing a
  • 9. cogent literary analysis of a poem, and citing your sources. This chapter specifically addresses Robert Frost’s “Design,” which is studied in this course, so be sure to read it before doing any further work for this assignment. Also, take notice of the example of a poetry thesis and outline on pp. 1,385–1,386. Choose 1 of the poems from the list below to address in your essay: · The Lamb” or “The Tiger” or “The Chimney Sweeper” by William Blake. · “Batter my heart, three-personed God,” or “Death Be Not Proud” by John Donne (watch the video lecture on John Donne’s “Batter my heart” for more ideas to help you write your essay on this poem). · “Journey of the Magi” by T. S. Eliot. · “God’s Grandeur” or “Pied Beauty” or “Spring” by Gerard Manley Hopkins. · “Ode on a Grecian Urn” or “Ode to a Nightingale” by John Keats. · “Ozymandias” by Percy Bysshe Shelley. · “My Last Duchess” by Robert Browning (watch the video lecture on Robert Browning’s “My Last Duchess” for more ideas to help you write your essay on this poem). · “Sailing to Byzantium” by William Butler Yeats. · “The Road Not Taken” or “Stopping by Woods on a Snowy Evening” by Robert Frost · “It Sifts from Leaden Sieves” or “There’s No Frigate Like A Book” by Emily Dickinson (Read Gilbert and Gubar’s “The Freedom of Emily Dickinson” for more ideas to help you write your essay on Dickinson’s poetry). · “Ulysses” by Alfred Lord Tennyson
  • 10. · “That Time of Year” (Sonnet 73) by William Shakespeare (watch the video lecture on William Shakespeare’s “Sonnet 73” for more ideas to help you write your essay on this poem). Consider the following questions for the poem that you have chosen: · What is or are the themes of the poem? · Is there a literal setting or situation in the poem? What lines from the poem tell the reader this information? What details does the author include? · Is the setting symbolic? · How would you describe the mood of the poem? What elements contribute to this mood? · Is the title significant to the poem’s content or meaning? How? · What major literary devices and figures of speech does the poet use to communicate the theme(s)? · How are rhyme and other metrical devices used in the poem? Do they support the poem’s overall meaning? Why or why not? · Is the identity of the poem’s narrator clear? How would you describe this person? What information, if any, does the author provide about him or her? · Does the narrator seem to have a certain opinion of or attitude about the poem’s subject matter? How can you tell? NOTE: These questions are a means of getting your thoughts in order when you are collecting information for your essay. You
  • 11. do not need to include the answers to all of these questions in your essay; only include those answers that directly support your thesis statement. Page 1 of 2