Entries by Student

write my assignment 29579

Your assignment is to prepare and submit a paper on teenager problems. Teenagers all over the world face many problems as they grow up. Many people have suffered teenage problems and, therefore, understand too well the magnitude of the devastation caused by such problems. In fact, there are few parents across the globe who admit that parenting teenagers is rosy and for most of these parents, the experience is not consistent and thus fluctuates between being downright possible and difficult. In the current world, so many parents acknowledge that they have problem teenagers. In so many ways, teenage years may be the greatest experience for many parents. This is because it is the time they witness the results of their efforts of parenting as their children grow up into adult and prepare to take on life’s challenges in the modern world. However, it is acknowledged by many parents that controlling the activities of teenagers is not an easy task as this is the time drug abuse, late night parties, drinking, and peer influence are most prevalent. Boyfriends, girlfriends, and some many confusing arenas of sex, love and sexuality begins, and the teenagers often find themselves under intense psychological pressure. This is also the time in a teenager’s lives when they find themselves distressed by the direction their lives are taking. This is, therefore, the point in their lives when they require a lot of advice and guidance to help them shape their lives in the right way. This calls for the government and adults to ensure t hat teenagers are nurtured well. This paper will discuss why the government needs to put money on teenagers’ problems and the need for adults to provide these teenagers with hope. World Youth Report (189) notes that these days teenagers, regardless of the country of residence, social origin or gender, are subject to individual risks and meet new individual opportunities with some beneficial while others are disastrous. It notes that in most cases, youths tend to engage in illegal behaviors as they engage in drug abuse and addiction, and the infliction of violence against their peers. A survey by World Youth Report shows that apart from the US, rates of juvenile delinquency rose in 1990s (189). The report reveals that, in Western Europe, several arrests of juvenile delinquents and under-age criminals rose by an average of 50 percent between 1980s and 1990s. Juvenile crimes have also increased in Eastern Europe and other commonwealth countries. The report reveals that most of the juvenile delinquents are related to drug abuse and excessive consumption of alcohol (189). The report also suggests that, despite most programs and studies on juvenile delinquency, and focus on teenagers as offenders, the youths themselves fall victim to acts of delinquency. This, therefore, poses many threats in their lives. For instance, the report show that teenagers who are at risk of becoming delinquents in most cases lives in difficult situations (189). World Youth Report (200) argues that violence against youth violates their fundamental human rights. This calls for the government, individuals and institutions to commit their time, expertise, money and resources necessary to address this world problem. It is widely acknowledged that early intervention provides the best approach to juvenile delinquency prevention (Roucek 32). These measures prevent the youths from breaking the law. The government should, therefore, take up an initiative of providing money and setting up professional development programmes to provide legal alternatives to youth income generation. These include providing youths and adolescents with increased economic opportunities, education, professional training, new workplaces and some form of assistance in organizing business (world youth Report 201). This will help prevent the teenagers from getting involved in delinquent acts. The government should also provide money to be used in setting up educational centers focusing on youth educational programmes (Heilbrun, Goldstein, and Redding 124).

 

"Not answered?"


Get the Answer

write my assignment 15299

Create a 1 page essay paper that discusses Summary of book Call of The Wild.

In chapter four, Buck takes the pack’s leadership and he demonstrates his capability by making the pack travel faster than the previous leader had done. This is seen when he makes the pack travel from Dawson to Skaguay in one day instead of the ten days they had taken previously. The pack is sold to a Scotsman after Perrault and Francois receives official orders directing them to transfer elsewhere. They travel back to Dawson and one of the dogs dies from fatigue and illness (London 36).

In chapter five, the dogs are sold to new masters, Hal and Charles who travel with Charles’ wife Mercedes. The inexperience of the pack’s new masters makes them starve and carry heavier loads than the ones it carried before. The pack reaches John Thornton’s camp and Thornton frees it from Hal’s mastership (London 46). In chapter six, Buck becomes friends with Thornton, defends him from his foes, and helps him win a bet (London 55). In chapter seven, Buck and Thornton travels east to find a lost gold mine. It is here that Buck first enters the woods after feeling wild yearnings. He wanders in the wilderness with wolves and one day, he come back to his master’s camp to finds it attacked by Yeehat Indians. He attacks the assailants, killing some and dispersing the rest. The book closes with Buck going into the woods and joining the wolves in wandering the wilderness (London

 

"Not answered?"


Get the Answer

write my assignment 11160

“If it’s on the internet, it must be true!!” Obviously, NOT. Believing everything you see and hear is not going to help you make good decisions for yourself. This assignment gives you practice in analyzing and evaluating places you could get information. The topic is “Where Could I Get Information About What to Do After High School Graduation”?Think of 5 specific information sources – specific people, specific internet sites, etc. For each potential source, analyze how “trustworthy” the source is. Set up your paper like this:Source 1: Name of person or websitea. What makes this person or website reliable/trustworthy/honest?b. What are the credentials of the source – how would they know about the info given?When was this information created/updated? Where was it published?Does the source have anything to gain by giving this information? Is there a reason for them to “slant” the info they’re giving?e. Is the information presented in a logical way? Does it make sense?f. Does more than one reliable source support the information given?…continue with your other four sources the same way.

 

"Not answered?"


Get the Answer

write my assignment 29232

// This program tests a password for the American Equities

// web page to see if the format is correct

// Place Your Name Here

#include <iostream>

#include <cctype>

#include <cstring>

using namespace std; 

//function prototypes 

bool testPassWord(char[]);  

int countLetters(char*);

int countDigits(char*);

int main()

{

char passWord[20];  

cout << “Enter a password consisting of exactly 5 “

<< “letters and 3 digits:” << endl;

cin.getline(passWord,20);

if (testPassWord(passWord))

cout << “Please wait – your password is being verified” << endl;

else

{

cout << “Invalid password. Please enter a password “

   << “with exactly 5 letters and 3 digits” << endl;

  cout << “For example, my37RuN9 is valid” << endl;

}

// FILL IN THE CODE THAT WILL CALL countLetters and 

// countDigits and will print to the screen both the number of

// letters and digits contained in the password.  

return 0;

}

//**************************************************************

//            testPassWord

//

// task:determines if the word contained in the

//  character array passed to it, contains

//exactly 5 letters and 3 digits.

// data in:a word contained in a character array

// data returned:  true if the word contains 5 letters & 3

//digits, false otherwise

//

//**************************************************************

bool testPassWord(char custPass[])

{

int numLetters, numDigits, length;

length = strlen(custPass);

  numLetters = countLetters(custPass);

numDigits = countDigits(custPass);

if (numLetters == 5 && numDigits == 3 && length == 8 )

return true;

else

return false;

}

// the next 2 functions are from Sample Program 10.5

//**************************************************************

//            countLetters

//

// task:counts the number of letters (both

//         capital and lower case in the string

// data in:a string 

// data returned:  the number of letters in the string

//

//**************************************************************

int countLetters(char *strPtr) 

{

int occurs = 0;

while(*strPtr != ”)    

{

if (isalpha(*strPtr))  

occurs++;

strPtr++;

}

return occurs;

}

//**************************************************************

//            countDigits

//

// task:counts the number of digitts in the string

// data in:a string 

// data returned:  the number of digits in the string

//

//**************************************************************

int countDigits(char *strPtr) // this function counts the

                // number of digits

{  

int occurs = 0;

while(*strPtr != ”)

{

if (isdigit(*strPtr)) // isdigit determines if

          // the character is a digit

occurs++;

strPtr++;

}

return occurs;

}

Exercise 1:  Fill in the code in bold and then run the program several times with both valid and invalid passwords. Read through the program and make sure you understand the logic of the code.

Exercise 2:  Alter the program so that a valid password consists of 10 charac- ters, 6 of which must be digits and the other 4 letters.

Exercise 3:  Adjust your program from Exercise 2 so that only lower case letters are allowed for valid passwords. 

 

"Not answered?"


Get the Answer