Question

In: Psychology

Discuss how class is represented in "Barn Burning," "Rectatif," and "The Displaced Person." You must have...

Discuss how class is represented in "Barn Burning," "Rectatif," and "The Displaced Person." You must have at least two quotes from each story. You need to have at least two quotes from the "Intersection" article. You will have a works cited page as well.

Barn Burning by Williams Faulkner

Rectatif by Toni Morrison

The Displaced Person by Flannery O'Connor

Intersection by Debra Henderson and Tickamyers

Do I need to post the articles. I listed the title of the article and the author.  

Solutions

Expert Solution

This quotes are from "Barn Burning" by Williams Faulkner

1. " Pretty and white , aint it?" he said. "That's sweat."

In this quote , Abner is talking about de Spain's mansion. Here he is referring to that the mansion was either built by low paid blacks or slaves. This was what Abner had for de Spain.

2." In the early afternoon the wagon stopped before an unpainted two room house."

Earlier it was not sure of whether Snopes were poor or not ?But this incident makes it very evident that they were poor indeed. This arises a question of how a two room housed building can accomodate a family of seven members? They lived in this way and will remain in the future as well . However , their living style will not change if they do not change their position in the society .

This quotes are from Rectatif by Toni Morrison

1. " a whole other race. "

This is an example of stereotype. This quote is referred to a character known as Roberta , who belongs to a different race . Like , never fashing her hair and smelled funny.

2. "sandy coloured"

A character known as Maggie describing her skin colour as sandy coloured. In this regard , an ambiguity is discussed about Maggie's racial identity . Whereas , Roberta is insisting that Maggie's skin colour is black , while Twyla is absolutely sure about her skin colour, not be dark skinned.

These quotes are from "The Displaced Person"

1. " I aint going there . they might eat me up . "

Here a charcter Sulk is talking about the poverty in Africa, in response of going back to Africa. As it has been stereotyped that Africans are cannibals and savages .

2. "Atlast I have got somebody I can depend on . For years I have been feeling with sorry people.Poor whte trash and niggers"

A character in story Mrs.Mcintyre hates people of all kind of colors, specially when they are poor.

Theses quotes are from intersection

1. "Flash in the pan"

Representing one of the rediscoveries of poverty programs , policy ,etc. Reinforcing who is poor and the reaosn why it underlies public opinion?

2."Blackness"

This was the racial identity while scrutinising the welfare policy .


Related Solutions

Person class You will implement the Person Class in Visual Studio. A person object may be...
Person class You will implement the Person Class in Visual Studio. A person object may be associated with multiple accounts. A person initiates activities (deposits or withdrawal) against an account that is captured in a transaction object. A short description of each class member is given below: Person Class Fields -   password : string Properties +   «C# property, setter private» IsAuthenticated : bool +   «C# property, setter absent» SIN : string +   «C# property, setter absent» Name : string Methods...
In C# Create classes: Person, Student, Employee, Professor, Staff and Address ☐ Address class must have...
In C# Create classes: Person, Student, Employee, Professor, Staff and Address ☐ Address class must have suitable auto-implemented properties for Address 1, Address 2 and City. ☐ Person class must have suitable auto-implemented properties for Name, Residence (type Address) and email. ☐ Student and Employee must be subclasses of Person. ☐ Employee must be a super class for Professor and Staff. ☐ Employee class must have suitable auto-implemented properties for salary (between 2000 to 8000), and hire date. ☐ Professor...
IN C# Create classes: Person, Student, Employee, Professor, Staff and Address ☐ Address class must have...
IN C# Create classes: Person, Student, Employee, Professor, Staff and Address ☐ Address class must have suitable auto-implemented properties for Address 1, Address 2 and City. ☐ Person class must have suitable auto-implemented properties for Name, Residence (type Address) and email. ☐ Student and Employee must be subclasses of Person. ☐ Employee must be a super class for Professor and Staff. ☐ Employee class must have suitable auto-implemented properties for salary (between 2000 to 8000), and hire date. ☐ Professor...
You are to create a class called Person. You should create the definition of the class...
You are to create a class called Person. You should create the definition of the class Person in a file person.h and the functions for Person in person.cpp. You will also create a main program to be housed in personmain.cpp. A Person will have attributes of Height (in inches) Weight (in pounds to 2 decimal places) Name (string) Gender (‘m’ or ‘f’) Ethnicity/Race (could be more than one word) Occupation (also more than a single word) A Person will have...
You need to make an AngryBear class.(In java) The AngryBear class must have 2 instance variables....
You need to make an AngryBear class.(In java) The AngryBear class must have 2 instance variables. The first instance variable will store the days the bear has been awake. The second instance variable will store the number of teeth for the bear. The AngryBear class will have 1 constructor that takes in values for days awake and number of teeth. The AngryBear class will have one method isAngry(); An AngryBear is angry if it has been awake for more than...
1- Write a class called MedicalStaff that is a Person (the class that you wrote in...
1- Write a class called MedicalStaff that is a Person (the class that you wrote in last lab). A MedicalStaff has specialty (i.e. Orthopedic, cardiology, etc.). 2- Then write two classes: Doctor class has office visit fee. Nurse class has title (i.e. RN, NP, etc.) Both classes inherit from MedicalStaff. Be sure these are all complete classes, including toString method. 3- Write a tester to test these classes and their methods, by creating an array or ArrayList of Person and...
Write a Java class called Person. The class should have the following fields: A field for...
Write a Java class called Person. The class should have the following fields: A field for the person’s name. A field for the person’s SSN. A field for the person’s taxable income. A (Boolean) field for the person’s marital status. The Person class should have a getter and setter for each field. The Person class should have a constructor that takes no parameters and sets the fields to the following values: The name field should be set to “unknown”. The...
Must post first. Research the Internet to identify various theories of management. Discuss how you have...
Must post first. Research the Internet to identify various theories of management. Discuss how you have observed or experienced at least one of those theories being applied by managers in the workplace – specifically, in a health care setting, if possible. Make sure to provide plausible examples of how desired outcomes were achieved or were not achieved using the highlighted theory.
uppose you have a pre-existing class Dieter that models a person trying to monitor diet and...
uppose you have a pre-existing class Dieter that models a person trying to monitor diet and weight to improve his/her Body Mass Index (BMI) rating. The class has the following data and behavior: Field/Constructor/Method Description private String name the dieter's full name, such as "John Smith" private int height the dieter's height, in inches private int weight the dieter's weight, in pounds public Dieter(String name, int h, int w) makes a dieter with given name, height, weight public String getName()...
In this homework you will implement a Library class that uses your Book and Person class...
In this homework you will implement a Library class that uses your Book and Person class from homework 2, with slight modifications. The Library class will keep track of people with membership and the books that they have checked out. Book.java You will need to modify your Book.java from homework 2 in the following ways: field: dueDate (private)             A String containing the date book is due.  Dates are given in the format "DD MM YYYY", such as "01 02 2017"...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT