Entries by Student

write my assignment 16644

Hi, I need help with essay on Describe social hierarchies and discuss their relevance for ethnic studies. Paper must be at least 250 words. Please, no plagiarized work!

better comprehension of the processes of social stratification and inequality in the general society but more importantly the business world (Karin 7). Ethnic minorities encounter a lot of challenges such as labor market discrimination to an extent that some of these people face health differences where those with low socio-economic status are at a disadvantage.

Significantly, a good example is where in the United States there are groups that experience inequality through discrimination when it comes to acquiring jobs i.e. Africans, Asians and Latinos (Karin 23). It is very hard to find people from these ethnic groups in the top level management of prominent organizations. once they get jobs in these organizations and are at the bottom of the hierarchies, it is very hard for them to get any promotions or even job upgrades.

Generally, ethnicity is a significant category of social hierarchies in contemporary societies that contain a significant number of ethnic communities with most parts of the society dealing with challenges associated with racism, ethnic discrimination, ethnic identity or even minority rights. This has actually resulted to the ethnic communities in the United States relying on social ties and latter groups that look upon state agencies for employment and trying to find ways that they can employ so as to improve labor market chances like acquiring high level skills (Karin

 

"Not answered?"


Get the Answer

write my assignment 29716

Review the Course Project Case Study below. Write a 3-4 page paper that responds to the questions on family dynamics, post-partum depression, and positive parenting. Use TWO recent evidence-based articles to support your responses and attach the article to your submission. This assignment must have accurate spelling and grammar and use APA Editorial Format for in-text citations and sources.

You have been assigned to provide care and education for Mrs. G.

Family Dynamics – Describe the family dynamics and identify strengths and areas where the dynamics are strained and might impact the parents themselves and their ability to parent. What informational resources might you provide these parents?

Post-Partum Depression – Do you see any signs and symptoms of post-partum depression? If so, what might be a good course of action? If not, do you believe Mrs. G. is at risk for post-partum depression? Why or why not?

Positive Parenting – What information and resources can you provide Mr. and Mrs. G. regarding positive parenting? What might you need to do to assist them in understanding how they can best parent?

This assignment must have accurate spelling and grammar and use APA Editorial Format for in-text citations and sources.

Case Study

Mrs. G., a twenty year old mother of a 2 year old is pregnant. English is not her primary language. She is recently married (one year) to a man in his early 40s who is not of her culture (She comes from Nigeria). The toddler is not this man’s child. She had difficulty with her first pregnancy; high blood pressure and spotting.

As she goes through her pregnancy she finds that her first trimester is difficult managing her health and the toddler. She is not used to having children and finds the toddler challenging. She also finds that she is having some of the same symptoms as she did during her last pregnancy. She is not comfortable going to an American doctor and tells her husband that she can take care of herself as she did during her last pregnancy. He is not happy about this decision and tells her that she has to go. He takes her to the doctor several times during her pregnancy but is not sure his wife is following the medical instructions being given.

By the end of her pregnancy she has gained more weight than she had anticipated. She could not understand why as she was eating her native foods. The doctor told her that she had high blood pressure. She was not sure what that meant as she felt the same as she did during the first pregnancy.

Labor was painful, long and difficult and while she had a vaginal birth the baby was small and experienced some respiratory distress at birth. She decided to again breastfeed even though she could only do it for a few weeks the last time. She was told that she had a “small supply of milk”.

In the first few weeks of taking care of the newborn, her husband wanted to be a part of the caring process and she was not happy as “men don’t do that”. She also found that with this baby she felt much more tired and had a hard time managing both children. In fact, the toddler became cranky and was aggressive to the newborn, trying to bite and scratch the new baby.

The husband again took her to the doctor after birth and then again for several months. He also insisted that she see a pediatrician for both children. At the doctor’s offices they told her that they had to “assess” the children to be sure they were “normal”. When she was told this, she was frightened.

As a few months passed, she became more lethargic and tired. Two children were more than she could deal with. Sometimes she could barely get out of bed. Yet, she knew that she was trying to do all of what she was told by both doctors and her husband. She really loved her children and respected her husband.

When her newborn was six months old she found out that she was pregnant again. She knew that it would be a mistake to have another child because her husband had just informed her that his two children from another marriage (6 and 12 years old who has asthma) was going to be living with them now and she would need to be taking care of them as well.

 

"Not answered?"


Get the Answer

write my assignment 3923

Hello,

I have a homework from economics which is probably quite simple, but i just can’t think of the next step

The task is: The costs of a firm are determined by the function AC = q2 – 6q + 70.

a) From what number of output will there start to be diminishing returns from variable input?

b) From what number of input does a firm reach the point of shutdown?

I know that the shutdown point will be a point where the revenue is lower than variable cost.

I will appreciate some help, as I feel that it shouldn’t be too complicated but I feel like I would need to know AVC and AFC or MC to get the result. How do I get them from just AC (some people also use ATC).

Have a good day!

 

"Not answered?"


Get the Answer

write my assignment 28990

We have our first project this week. So any questions you may have please fire away, don’t be shy 🙂 It helps keep me on my toes. Plus, I always give out HINTS along the way to make the process less painful so lets get started.:)

Now the quickest way to address this project is in stages for example :

The project basically requires you to what, read a text file and create a calculator interface; that’s it, you can use a file selection dialog box or hard code it; your choice.

you will need a Tokenizer correct? and here are t

private StringTokenizer tok;

   private String token = new String();

   private String nextToken = new String();

   private String line = new String();

   private JFrame frameA; 

   private Scanner fileIn;

   private Scanner scanLine;

   private JButton button;

   private int left, right, left2, right2;

   private int syn = 0;

   private String x;

Then using the scanner and tokenizers you will read that file line by line

 public void createGui(){

       try{

           fileIn = new Scanner(new BufferedReader(new FileReader(file)));

           if(fileIn.hasNextLine()){

               scanLine = new Scanner(line = fileIn.nextLine());

                createWindow(scanLine);

……..

//method using scanners and tokenizers to ensure syntax while creating the gui

    public void createWindow(Scanner scanLine){

       if (scanLine.hasNext()){

           token = scanLine.next();

           if(token .equals(“Window”)){

               if (scanLine.hasNext()){

                   token = scanLine.next();

                   frameA = new JFrame(getString(token));

………………………………………

//method to ensure syntax and determine the layout of the frame

public void createFrameLayout(Scanner scanLine){

if(scanLine.hasNext()){

if((token = scanLine.next()) .equals(“Layout”)){

if(scanLine.hasNext()){ 

token = scanLine.next(); 

tok = new StringTokenizer(token, “:”, true); 

if((token = tok.nextToken()) .equals(“Flow”))

………………………………………………..

//method to determine the parameters used in grid layout

public GridLayout createGridLayout(Scanner scanLine){

tok = new StringTokenizer(token, “[(),]”, true);

if(tok.hasMoreTokens()){

if((token = tok.nextToken()) .equals(“Grid”)){

if(tok.hasMoreTokens()){

if((token = tok.nextToken()) .equals(“(“)){

if(tok.hasMoreTokens()){ 

token = tok.nextToken();

//main method for widget, everything here is added to the frame

public void createWidgets(Scanner fileIn){

while(fileIn.hasNextLine()){

scanLine = new Scanner(line = fileIn.nextLine()); 

if (scanLine.hasNext()){

token = scanLine.next(); 

x = token;

if(x .equals(“Button”)){

frameA.add(button = button(scanLine));

}

else if(x .equals(“Group”)){

for(JRadioButton rB: createGroup(fileIn)) frameA.add(rB);

………………………………………………………

//method for adding widgets to panels, use of recursion here for nested panels

public void createWidget(Scanner fileIn, JPanel jPan){

while(fileIn.hasNextLine()){

line = fileIn.nextLine();

scanLine = new Scanner(line); 

if (scanLine.hasNext()){

token = scanLine.next();

x = token;

if(x .equals(“Button”)){

jPan.add(button(scanLine

 

"Not answered?"


Get the Answer