Monday, September 30, 2019

Displays the result Essay

To improve legibility the comments are displayed to the right of every TOM line of code, and not in the standard style. read keyin Reads data inputted by keyboard and stores in the store location keyin load keyin Loads data from the store location keyin in to the accumulator sub minus Subtracts the store location minus from the accumulator store display Stores value in accumulator in the store location display print display Displays contents of the store location display on the screen stop Stops program execution minus data. 1 Initialises a store location minus with the value 1 in it keyin data 0 Initialises a store location keyin with the value 0 in it display data 0 Initialises a store location display with the value 0 in it 2. Write a TOM program that reads a number from the keyboard, multiplies it by 2, reads another number b from the keyboard, multiplies it by 3, and then displays the result. In other words, evaluate 2*a+3*b. read keyin1 Reads data inputted by keyboard and stores in the store location keyin1 load keyin1 Loads data from the store location keyin1 in to the accumulator mult val1 Multiplies the accumulator by the store location val1 store display Stores value in accumulator in the store location display read keyin2. Reads data inputted by keyboard and stores in the store location keyin2 load keyin2 Loads data from the store location keyin2 in to the accumulator mult val2 Multiplies the accumulator by the store location val2 add display Adds the store location display to the accumulator store total Stores value in accumulator in the store location total print total Displays contents of the store location total on the screen stop Stops program execution val1 data 2 Initialises a store location val1 with the value 2 in it val2 data. 3 Initialises a store location val2 with the value 3 in it keyin1 data 0 Initialises a store location keyin1 with the value 0 in it keyin2 data 0 Initialises a store location keyin2 with the value 0 in it display data 0 Initialises a store location display with the value 0 in it total data 0 Initialises a store location total with the value 0 in it 3. Write a TOM program that displays two numbers, entered from the keyboard, in descending numerical order. read keyin1 Reads data inputted by keyboard and stores in the store location keyin1 read keyin2. Reads data inputted by keyboard and stores in the store location keyin2 load keyin1 Loads data from the store location keyin1 in to the accumulator sub keyin2 Subtracts the store location keyin2 from the accumulator jifz lower Transfers control to the instruction lower if the zero flag is set print keyin1 Displays contents of the store location keyin1 on the screen print keyin2 Displays contents of the store location keyin2 on the screen stop Stops program execution lower print keyin2 Displays contents of the store location keyin2 on the screen print keyin1. Displays contents of the store location keyin1 on the screen stop Stops program execution keyin1 data 0 Initialises a store location keyin1 with the value 0 in it keyin2 data 0 Initialises a store location keyin2 with the value 0 in it 4. Write a TOM program that reads a number N from the keyboard and displays the sum of all integers from 1 to N i. e. 1+2+3+†¦ +N. read keyin. Reads data inputted by keyboard and stores in the store location keyin loop load sofar Loads data from the store location sofar in to the accumulator add one Adds the store location one to the accumulator store sofar Stores value in accumulator in the store location sofar add total Adds the store location total to the accumulator store total Stores value in accumulator in the store location total load sofar Loads data from the store location sofar in to the accumulator sub keyin Subtracts the store location keyin from the accumulator jifn loop. Transfers control to the instruction loop if the sign flag is set print total Displays contents of the store location total on the screen stop Stops program execution keyin data 0 Initialises a store location keyin with the value 0 in it one data 1 Initialises a store location one with the value 1 in it sofar data 0 Initialises a store location sofar with the value 0 in it total data 0 Initialises a store location total with the value 0 in it Alternatively, a more mathematical approach would be to use the below program. Observing the numbers inputted and outputted from the above program, I was able to find a relationship between the two numbers, this can be summarised by the below formula: (N x 0. 5) + 0. 5 x N = TOTAL The program using the above formula is simpler to write, uses far less processor cycles, and therefore far more efficient. read keyin Reads data inputted by keyboard and stores in the store location keyin load keyin Loads data from the store location keyin in to the accumulator mult val Multiplies. the accumulator by the store location val add val Adds the store location val to the accumulator mult keyin Multiplies the accumulator by the store location keyin store total Stores value in accumulator in the store location total print total Displays contents of the store location total on the screen stop Stops program execution keyin data 0 Initialises a store location keyin with the value 0 in it val data . 5 Initialises a store location val with the value 0. 5 in it total data 0 Initialises a store location total with the value 0 in it TOM2 1. A mobile telephone company, Odear, makes a monthly standing charge of i 12. 50 and charges 5 pence per local call. Write a TOM program that reads the amount of calls made and displays the total monthly bill. read calls Reads data inputted by keyboard and stores in the store location calls load calls Loads data from the store location calls in to the accumulator mult rate Multiplies the accumulator by the store location rate add standing Adds the store location standing to the accumulator store total Stores value in accumulator in the store location total print total Displays contents of the store location total on the screen stop Stops program execution total data. 0 Initialises a store location total with the value 0 in it calls data 0 Initialises a store location calls with the value 0 in it standing data 12. 50 Initialises a store location standing with the value 12. 50 in it rate data . 05 Initialises a store location rate with the value . 05 in it 2. Expand your program of (1) so that the program jumps back to the beginning, ready to calculate another bill instead of ending. start read calls Reads data inputted by keyboard and stores in the store location calls load calls Loads data from the store location calls in to the accumulator mult rate. Multiplies the accumulator by the store location rate add standing Adds the store location standing to the accumulator store total Stores value in accumulator in the store location total print total Displays contents of the store location total on the screen jump start Transfers control to the instruction start stop Stops program execution total data 0 Initialises a store location total with the value 0 in it calls data 0 Initialises a store location calls with the value 0 in it standing data 12. 50 Initialises a store location standing with the value 12. 50 in it rate data . 05 Initialises a store location rate with the value . 05 in it 3. What’s wrong with the program in (2)? The program has no way of ending (normally), and will therefore loop continuously. 4. Modify (2) so that if the user enters 0 for the number of units the program terminates. start read calls Reads data inputted by keyboard and stores in the store location calls load calls Loads data from the store location calls in to the accumulator sub check Subtracts the store location check from the accumulator jifz end Transfers control to the instruction end if the zero flag is set mult rate. Multiplies the accumulator by the store location rate add standing Adds the store location standing to the accumulator store total Stores value in accumulator in the store location total print total Displays contents of the store location total on the screen jump start Transfers control to the instruction start end stop Stops program execution total data 0 Initialises a store location total with the value 0 in it calls data 0 Initialises a store location calls with the value 0 in it standing data 12. 50 Initialises a store location standing with the value 12. 50 in it rate data . 05 Initialises a store location rate with the value . 05 in it check data 0 Initialises a store location check with the value 0 in it 5. Now modify (4) so that the user can tell the system how many bills to calculate and the program terminates after running that many times. read billnum Reads data inputted by keyboard and stores in the store location billnum start read calls Reads data inputted by keyboard and stores in the store location calls load calls Loads data from the store location calls in to the accumulator mult rate Multiplies the accumulator by the store location rate add standing. Adds the store location standing to the accumulator store total Stores value in accumulator in the store location total print total Displays contents of the store location total on the screen load billnum Loads data from the store location billnum in to the accumulator sub billsub Subtracts the store location billsub from the accumulator store billnum Stores value in accumulator in the store location billnum jifz end Transfers control to the instruction end if the zero flag is set jump start. Transfers control to the instruction start end stop Stops program execution total data 0 Initialises a store location total with the value 0 in it calls data 0 Initialises a store location calls with the value 0 in it standing data 12. 50 Initialises a store location standing with the value 12. 50 in it rate data . 05 Initialises a store location rate with the value . 05 in it billnum data 0 Initialises a store location billnum with the value 0 in it billsub data 1 Initialises a store location billsub with the value 1 in it 6. Finally, modify the program of (5) so that the user can first enter the price per unit, and the standing charge. Read rate Reads data inputted by keyboard and stores in the store location rate read standing Reads data inputted by keyboard and stores in the store location standing read billnum Reads data inputted by keyboard and stores in the store location billnum start read calls Reads data inputted by keyboard and stores in the store location calls load calls Loads data from the store location calls in to the accumulator mult rate Multiplies the accumulator by the store location rate add standing. Adds the store location standing to the accumulator store total Stores value in accumulator in the store location total print total Displays contents of the store location total on the screen load billnum Loads data from the store location billnum in to the accumulator sub billsub Subtracts the store location billsub from the accumulator store billnum Stores value in accumulator in the store location billnum jifz end Transfers control to the instruction end if the zero flag is set jump start. Transfers control to the instruction start end stop Stops program execution total data 0 Initialises a store location total with the value 0 in it calls data 0 Initialises a store location calls with the value 0 in it standing data 0 Initialises a store location standing with the value 0 in it rate data 0 Initialises a store location rate with the value 0 in it billnum data 0 Initialises a store location billnum with the value 0 in it billsub data 1 Initialises a store location billsub with the value 1 in it Modifications in TOM2 In question 1, the program initialises four store locations; rate to store the standard call rate of 0. 5, standing to store the standing charge of 12. 50, calls to store the number of calls made and total to store the total bill. The programs reads a value inputted by the user (number of calls), multiplies this value by the call rate, adds the standing order and displays it. Question 2 introduces a loop after the total has been displayed to the start of the program so that user may calculate another bill, this however is not ideal as there is no correct way to terminate the program normally. Question 4 combats this problem by allowing the user to enter 0 to terminate the program. This is done by introducing an additional store location called check with the value 0 assigned to it. The program subtracts check from the number of calls entered, if the result is 0 (0 – 0 = 0) then the zero flag is set, the jifz statement then transfers control to the end of the program, where it terminates normally. Question 5, in addition to the store location used in question 1 introduces two more; billnum to store the number of bills required and billsub, a store location containing the value 1. The user initially enters the number of bills required, this is stored in billnum, the program then calculates the bill in same way as question 1. After the bill has been displayed, the program subtracts billsub (1) from the number of bills, if the result is zero (ie no more bill to calculate) the zero flag is set, and using the jifz statement jumps to the end of the program. If the zero flag is not set (more bills to calculate) the program is looped back to enter more bill details. Question 6, allows the user to enter the standing charge, rate of calls and number of bills before the bills are calculated, these are stored in their respective locations (standing, rate and billnum) before the program continues to execute in the same way as question 5. CSO Tutorial 4 Exercise 2. 1 We wish to compare the performance of two different machines: M1 and M2. The following measurements have been made on these machines: Program Time on M1 Time on M2 1 10 seconds 5 seconds 2 3 seconds 4 seconds Which machine is faster for each program and by how much? For program 1, M2 is 5 seconds(or 100%) faster than M1. For program 2, M1 is 1 second (or 25%) faster than M2. Exercise 2. 2 Consider the two machines and programs in Exercise 2. 1. The following additional measurements were made: Program. Instructions executed on M1 Instructions executed on M2 1 200 x 106 160 x 106 Find the instruction execution rate (instructions per second) for each machine running program 1. Instructions executed = Instructions per second (instruction execution rate) time(seconds) M1 200000000 = 20000000 10 = 20 x 106 Instructions per second or 20 Million Instructions per second M2 160000000 = 32000000 5 = 32 x 106 Instructions per second or 32 Million Instructions per second Exercise 2. 3 If the clock rates of machines M1 and M2 in Ex 2. 1 are 200 MHz and 300 MHz respectively, find the clock cycles per instruction (CPI) for program 1 on both machines using the data in Ex 2. 1 & 2. 2. Clock rate = clock cycles per instruction (CPI) Instruction execution rate M1 200000000 = 10 clock cycles per instruction (CPI) 20000000 M2 300000000 = 9. 375 clock cycles per instruction (CPI) 32000000 Question 4 Draw a full flowchart of the final TOM program produced at the end of exercise TOM2. This should include all the instructions, loops and all the program labels in the appropriate places.

Sunday, September 29, 2019

Karl Marx’ views Essay

For Karl Marx, poverty is the outcome of the rampant class inequality that the society is suffering today. The working class, whom Karl Marx advocates, is the ones who are actually earning the money for the society (Nafziger & Auvinen, 2003). They are the ones who actually deserve to get much of the gains, rather those who are capitalizing from their labor. Marx stressed that capitalists are the ones bringing disarray in the society because they are actually contributing lesser work as compared to the laborers, yet they are getting most of the gains. In order to correct this, Marx strongly advocated the abolishing of capitalism and replaces it with communism. For him, it could be a way to alleviate poverty in the society today, rather than just letting the capitalists sit around and wait for the harvest of their money’s fruit, rather than giving the laborers the real fruits of their labors. In Marx’ belief, capitalism has been the root of the great class divide, the widening gap between different social strata, where the poor and the rich are distinctively apart from each other. This is because of the fact that a great part of the gains goes to the pockets and the bellies of the capitalists, who are theoretically â€Å"getting even richer,† the fact that they are the ones who have the money. On the other hand, the laborers, the ones who are exerting greater effort as compared to these capitalists, are not getting anywhere the definition of rich at all, hence, they are having the difficulty to cope with the increasing cost of living, thus worsening their status, with them experiencing the â€Å"poor is getting poorer† part. Looking closely at Marx’ ideas, you could see that it could also be about freedom. It is being able to freely produce and receive what is rightfully yours, as for the part of the laborers, for their efforts, their hard work to be reciprocated with enough pay (Kohl & Organisation for Economic Co-operation and Development. Development Centre. , 2003). It is about how the true â€Å"money-earners† – the laborers, be able to control various circumstances that could benefit them, and not the capitalists. They will be able to create a free society where their hard work will be equal to a good life for them and their families. Because of this, the society will be a better place as conceived by Marx. It will be an exploitation-free society, in the same time it will do away with oppression, racism, unemployment, war, from poverty and inequality.

Saturday, September 28, 2019

Use of Aspirin Among Diabetics Research Paper Example | Topics and Well Written Essays - 1750 words

Use of Aspirin Among Diabetics - Research Paper Example Not entirely. The subject was aspirin use among diabetics, a group known to benefit from such therapy. However, although much of the literature search included diabetes based studies, other pieces were of a more general nature, although still concerned with aspirin use, we're not concerned with this specific group. There is a section labeled ‘method’ but no such method is actually described. The researchers were presumably testing the correctness of the guidelines referred to from the Preventive Services Task Force, but this aim is not stated clearly. Only two studies were considered, although there are in fact plenty to choose from. Was the study well or poorly designed? As methods and aims were poorly defined if at all, it is impossible to tell if this study was well designed to meet its purpose. They quote evidence for instance of aspirin reducing the risk of coronary heart disease, but the evidence used is not specific to diabetics. The study setting was relevant? Only in the sense that the two papers under consideration were both concerned with diabetes and aspirin use. These studies were felt to be both inadequate and inconclusive so did not really add much of value to knowledge on this subject. If the participants were appropriately defined, selected representatively, followed? up without significant loss etc..? There were no participants to be considered, merely two earlier reports.

Friday, September 27, 2019

Effective Team and Performance Management Assignment

Effective Team and Performance Management - Assignment Example They must be able to suggest solutions to problems and take control of situations by being initiative. They must have the self-confidence to be willing and able to lead others and to set an example. A team leader should be able to take command of others and to push through ideas and policies to their conclusion will assertiveness and determination. With energy and enthusiasm they must set high standards of effort and involvement so that others are encouraged to act in a similar way (Stimpson, Borrington 2006). Some basic roles of managers include strategic planning like setting aims and targets beforehand for the future as they give a sense of direction and purpose to any team work. This will be common feeling among the team members of having something to work towards. It is a manager’s responsibility to organize people and resources effectively with the process of delegation, because a team leader cannot do everything on his own. Some tasks need to be delegated to subordinate s or team members. Delegation means giving a subordinate the authority to perform particular tasks. However, it is important to remember that it is the authority to perform a task which is being delegated and not the final responsibility. A manager can be very good or planning and organizing but may have failed to coordinate or bring people in the tem together just like what happened in the case study. This can be a real danger with the functional form of organization or structural problems as this leads to haphazard aims and not a shared vision. A good leader must therefore make sure that all team members are working together to achieve the plans originally set by the leader. Managers or team leaders must know the right way to command by guiding, leading and supervising people and not just telling them what to do. They must make sure that instructions and deadlines are being met on time. It is their responsibility that tasks are carried out by all team members effectively. Team lea der must also try to evaluate and measure the work of all individuals to make sure that they are on target. There is little point in planning and organizing when leaders fail to check that the original aims are being met. Disciplining staff is also part of their responsibility (David, R. 2005). So, if the team leader does not possess all these roles, then the teamwork is going to lack a sense of control and direction. There would be no coordination between team members which will lead to wastage of effort. Control of team members and organization of resources is vital for productive output and results otherwise; the team project will drift and eventually fail. Different styles of leadership call for different management styles. A good leader will adopt the style of leadership that suits his situation the best. Leadership styles are the different approaches of dealing with people when in a position of authority; autocratic, laissez-faire and democratic. Autocratic leadership is where the leader is expect to be in charge if the project and have his orders followed. They keep themselves separate from other members of the team; they make virtually all the decisions. They will only tell people what they need to know. Communication is the business is mainly one-way and other people have little or no opportunity to comment on anything.

Thursday, September 26, 2019

Film review of an Australian feature film Essay Example | Topics and Well Written Essays - 500 words

Film review of an Australian feature film - Essay Example rican influence, most Australians in the 50s and 60s prefer American movies, but in the emergence of the Australian film industry revival the citizens had little choice on what to watch. The people in the industry struggled to make the industry alive by catering the needs of the Australian viewers (Cetti, 2010). The efforts were seen as great revival for the pride and culture of Australia as the government supports the local film industry. Despite of the popularity of American films in Australia, the local movie industry made its contributions to bring itself up. In line with its endeavor, the film Cane Toads: An Unnatural History together with other movies was made to promote its local culture. After all, movies are made to add value to the lives of people and the entertainment industry. Brens (2000, p. 60) stated that the film industry does not exist plainly for making money through movies. Perhaps the movie Cane Toads highlighted the topic of free will in contrast with needs of various people coming from different genders, social standings and their opinions regarding the fast increase in the population of a toad introduced in the 30s to combat the pests in the sugarcane plantations. The movie was presented not only as an eye-opener for the ecological consequences of the booming population of the cane toads but also to make use of the movie as a way of sociological inquiry as stated by Taussig (1992, pp. 79-80). The movie contained the natural science elements mixed with sociological issue that showed how culture can transform the view of people upon the existing pests. The cane toads came from South America and were brought to Queensland and other parts of Australia to remove the proliferation of grey back beetles that pester the sugarcane plantations. Sugarcane plantation owners lost profits as many types of sugarcane were destroyed by the beetles despite of the quick breeding of cane toads (Crotty 2006). Unluckily, toads cannot reach the beetles as those do

Wednesday, September 25, 2019

Ethics and Social Responsibility Coursework Example | Topics and Well Written Essays - 500 words

Ethics and Social Responsibility - Coursework Example Within a business setting, the making of ethical decisions relies on the values set by the owner for the employees. Business owners should set up an adequate plan of action that observes social ethics while setting up the business. The plan of action is a three step approach that adopts listening, communicating and recognizing skills. Stage one involves listening to employees. The relationship between the organization and employees is a critical aspect of the company. The issue of ethics does not exist in isolation. Therefore, the manager should establish a proactive approach that entails listening to their employees and getting their concerns about the situation at hand. The acknowledgement of the moral issues of employee motivates them to participate in the process. Stage two entails proper communication: The process of listening generates a lot of ideas. In return, communication offers a chance to build the ideas through understanding the failures and the progress of a company. The progress gives a manager a clear outlook of the concerns addressed in the prior stage. It also gives the manager an opportunity to comprehend the problems faced within the organization. Communication is established through public forums, one to one dialogue and electronic media. Stage three requires recognition of the accomplishments of the company. In this case, the manager recognizes the accomplishments of the employee towards the goals of the firm and adopts new ethics that can motivate employees to produce the best results. The manager uses formal initiatives, informal gestures and public recognition as a means of motivating the employee. 2. Dunkin Donuts has social and economic responsibilities to accomplish among the employees, the customers, the investors and the community at large. In an independent perspective, the company has full responsibility to the customers in order to meet its objectives. This involves ability to develop proper ethics of service delivery in the

Tuesday, September 24, 2019

The current status of childhood obesity on measured outcomes Essay

The current status of childhood obesity on measured outcomes - Essay Example A child who attends a public school and is eligible for national school lunch and school breakfast programs has a higher prevalence of BMI than one attending private school (Hooker, 2009, p. 100). Approximately 70% of the children being obese have a cardiovascular risk while on the other hand, 30% of them are at risk of hypertension (MMWR, 2011, p. 42). Due to increased concern about the condition, an initiative needs to be started to reduce child prevalence of obesity. The research indicates that the obesity levels are increasing tremendously especially with the increasing low child activity with one hour on TV and playing games being associated with 0.08%-1.4% increase in obesity (MMWR, 2011). For the condition to be reversed, children are to be encouraged to participate in physical activities such as games. This will play a great role in reversing the condition and reducing the escalating

Monday, September 23, 2019

Business Inteligence Essay Example | Topics and Well Written Essays - 2000 words

Business Inteligence - Essay Example Each of the categories requires a unique packaging and presentation. Furthermore, the type of targeted market differs with every category of product or service advertised in each website. Some of these include: Education Education is a two-pronged economical scope. The Cardiff city hopes to become an academic center within the region. To achieve this, the envisioned city must have strategies capable of beating other modern day academic centers such as Liverpool and London. The city must therefore have schools running and education centers from kindergarden to the university. Theses academic institutions will need accreditation by government authorities to check that they meet the standards of quality (Bogomolova, 2011). The website runs the opportunities that the education sector presents to potential investors. The most common investment opportunity in the academic sector is the setting up and management of private academic institutions. To this end, the website targets the currentl y existing universities such as Oxford and Liverpool among others to invest in the establishment of new campuses within the city. The website offers basic contact information on how interested parties conduct the transactions of obtaining land and other resources necessary for such developments. The company welcomes both local and foreign investors, thus the translation into different other languages. Additionally, the website targets potential students. The education sector primarily depends on the availability of students. Attracting students in the region becomes difficult since children school in regions where their parents reside. The company thus runs a number of other websites advertising other diverse investment opportunities with an aim of attracting as much residents into the city. This way, the basic level academic institutions are certain of pupils (Jiaming, 2008). Tertiary and university level are not much perturbed by the locality of parents. This is thus a level oppor tunity and depends on the advertisement potential of the company and the reputation of the subsequent universities that will eventually set up in the region. Visit, Meet, Invest and Shops These four are massive investment opportunities that the Cardiff and company seeks to capitalize in, the thus each have a separate website which are later translated into other three to four different languages depending on the position and locality of the target market. The Cardiff city hopes to become a number one tourist destination in the country and transform the outlook of Wales. This daunting task will require the involvement of different sector players. The company therefore runs the websites displaying the available natural attractions in the region and provides possible facelifts required in and around every one of them. The websites thus targets tycoons in England and around the world for opportunities in the unexploited hospitality industry. In conjunction to the Visit website, the Meet websites offers a platform where interested parties meet and exchange ideas. In such social gatherings, the investors make possible business contracts geared towards the development of the city. Additionally, a chance to gather all the interested participants in the project further kick starts the development project, as most of these people will require boarding facilities while touring the virgin land. Additionally, the

Sunday, September 22, 2019

Collaborative project Assignment Example | Topics and Well Written Essays - 500 words

Collaborative project - Assignment Example collaboration plan had little or no impact on student learning, you have the opportunity to reflect on the plan and identify possible alternative approaches that could be used in the future. The collaboration task format is based on the Kentucky Teacher Internship teacher performance assessment model. It supports Kentucky Teacher Standard VIII, Collaborates with Colleagues/Parents/Others. The format has been modified for application to teacher preparation. You will collaborate with one or more other professionals to design and implement a plan for a student whose learning could be enhanced by collaboration. Be sure to review carefully the appropriate guidelines before completing this form. Edward has a learning disability which affects hearing processing. Like many students with invisible disabilities, such as learning and mental impairments, he is sensitive to the attitudes and thoughts of fellow classmates and teachers regarding his need for special facilities in class. In the meeting I discussed in detail with the subject teachers/concerned teachers about the performance of Edward in their subjects specially the marks percentage which he got in monthly, quarterly and annual examinations. I also enquired in explanatory way about his concentration in each class. Besides all this, activities of Edwards were monitored and discussed in the meeting. The main impact of the collaboration plan on this student’s learning is that on spot assessment is possible. Because of this plan I evaluate students grades/marks frequently like monthly, quarterly and annually. Moreover, I also monitor his activities and interests on regular

Saturday, September 21, 2019

Describe with examples how different aspects of development can affect one another Essay Example for Free

Describe with examples how different aspects of development can affect one another Essay Example 1 A family of four attends a large family gathering. Their new addition to their family is 6 month old â€Å"Emily†. This â€Å"Emily’s first time out with people other than her family. While she is with her family, â€Å"Emily is happy, smiling and making cooing and babbling noises. She is aware and alert with the new environment that surrounds her, she is she moves her arms and legs vigorously to show her excitement. As this is her first social outing, she gets upset when someone she is not familiar with talks to her or plays with her. She starts to cry as this her way of showing that she is not familiar with this person and may be a little scared. Emily’s emotions affects her communication. Example 2 â€Å"John† is seventeen from a low wage, single parent family. He has a part-time job while studying to help out his mother financially. Unfortunately the Manager undermines, bullies him and takes credit for his work. â€Å"John† who is not used to dealing with difficult people in a working environment, may become withdrawn and quiet. He may keep his feelings towards his Manager to himself as he is afraid that he might lose his job that he desperately needs. Emotionally he feels depressed and unworthy. He is seen as ‘the man of the house’ and feels he cannot communicate his problems to his mother as he doesn’t want her to have the added pressure of dealing with his problem. His studying may also suffer as he worries about his mother’s financial situation and also his situation at work. Socially he has withdrawn from his friends as they may realise something is wrong is embarrassed to talk to them about it. Intellectually, his studies would have suffered as a result of his manager bullying and undermining him as he cannot concentrate.

Friday, September 20, 2019

Social Work Reflective Essay

Social Work Reflective Essay Introduction Reflection forms a central part of social work practice and education, and it is particularly important for social workers in placement settings or newly qualified social workers (Dcruz et al, 2007; Parker, 2010). In its simplest terms, reflection provides us with an opportunity to review our decisions and decision-making processes however, in practice, reflection is a far more complex concept (Trevethick, 2005: 251). It is essential that social workers have the confidence to question their own practice, the organisation that they work in, and dominant power structures in society at large (Fook, 1999). Reflection, and in particular critical reflective practice, forms a key part of this, as social workers are called on to reconsider and reconstruct the dominant social discourse. In this essay I will explore my experience of reflection during my practice placement, and in particular in relation to a specific case study. I will start by outlining my practice setting, and the details of the particular case study. I will then explore my experience of reflection, and how reflective practice supported me to apply theory to practice. Finally take a critical look at my practice, and suggest things that I could have done differently. Although I engage with and explored multiple models of reflection during my placement, the model of reflection that I found most useful was Schons theory of reflection (Schon, 1983; 2002). Schon advocated 2 types of reflective practice. Firstly, reflection-on-action, which involves reflecting on an experience that you have already had, or an action that you have already taken, and considering what could have been done differently, as well as looking at the positives from that interaction. The other type of reflection Schon notes is reflection-in-action, or reflecting on your actions as you are doing them, and considering issues like best practice throughout the process. Due to the limits of the current medium, I will be focusing mostly on reflection-on-action. However, appropriate use of this type of reflection should inform future practice, and encourage appropriate reflection-in-action when presented with a similar situation again. Practice Setting My placement was based at a not for profit mental health agency, where we provided psycho-social support for people who have experienced mental health difficulties. Many of the people that we worked with had been subject to section 2 or 3 orders under the Mental Health Act 1983/2007, and were now experiencing aftercare under section 117. Referrals to the agency could come from social services, GP surgeries, and other not-for-profit organisations. The people with whom we worked usually had a multitude of presenting issues and concerns, and I was aware from the onset that complex settings like this require social workers to be reflective in their practice in order to be able to deal with a variety of situations (Fook and Gardner, 2007). However, it soon became clear to me that the fast-paced working environment, where at times paperwork was promoted over practice, meant that reflection could potentially be ignored in favour of bureaucracy and targets (DCruz et al, 2007). This type of difficulty and uncertainty around reflection is common in placement settings and when starting a new role (Knott and Spafford, 2010). Reflection was particularly important when making the transition from university learning to the learning experienced in a placement setting. Social workers are provided with some guidance in practice to support this process. The Practice Competency Framework (PCF) domains provide some direction about what areas social workers are expected to emphasise in practice, and what needs to be evidenced in order to successfully complete a placement. Values and ethics are central to this framework, and comprise domain 2. Critical reflection is also part of this framework, making up the entirety of domain 6. However, it is essential that social workers do not become complacent in their personal reflection, and they cannot fall back on these types of guidance and procedures as a shield against engaging in reflection on complex ethical subjects (Banks, 2006). Case Study Many of the service users that we worked with had a dual diagnosis (problems with mental health and addiction). These service users particularly challenged me, as I found their intersecting issues usually stretch well beyond their dual diagnosis, to other areas like housing or physical health. I have, therefore, chosen to discuss one such case, where I engaged in substantial reflection. The background to this case study, and my involvement with him, will now be discussed. JK is a man in his 50s who was born in Nigeria but moved to the UK at a young age. When I worked with him, he lived in a housing project that was specifically meant to house ex-offenders. Although JK had a lead key-worker at my agency who was a permanent member of staff, I was responsible for the majority of the key working sessions with JK during my time on this placement. JK had a long history of substance misuse and mental health problems. He was diagnosed with bi-polar disorder, and dealt with significant anxiety and depression. He received depot injections monthly for his mental health difficulties, and he found these instances particularly distressing. JK also had a substantial history of criminal activity, which he said became necessary in order to maintain his addiction to certain illicit drugs. I would meet JK in a location of his choosing. Although usually this would mean either in our office or in his room, sometimes we went for a walk and I accompanied him to appointments at times also. This more informal working setting was where he felt he could speak most openly to me. Although I will discuss my involvement with JK more broadly,I will focus on one particular key working session that we had, where JK was most descriptive about all his concerns and the issues that were effecting him (session A). This is significant because reflection is particularly important when a critical incident like this has been experienced, and a less reflective approach could lead to a less holistic or even inadvertently oppressive account of what had transpired (Ruch, 2002). Reflective Practice Different models of reflection supported me throughout the reflective process. Gibbs Model of Reflection (1988) and Atkin and Murphys Model of Reflection (1994) both promote a cyclical approach to reflection, whereby reflection is ongoing and not a linear process. I found this to be the case, as I did not move through stages of refection one after the other, but moved between them, often returning to my conceptual starting point multiple times before settling on a holistic understanding of an event or situation that incorporates all systems influencing that scenario. Keeping a reflective diary of critical issues and my own thought process encouraged me to construct my understanding of the work I was doing, and justify what actions I had taken (White, 2001). Support from colleagues and supervisors was also invaluable in this process (Ruch, 2002). Yip (2006) aptly notes that models like those described above are most useful when starting out the reflective process, and I quickly adapted and developed a model of reflection that was most appropriate for me. Social work has traditionally been constructed as the professional knowing best, and continues to be practised in a way where the practitioner holds most of the power (Holmes and Saleeby, 1993). The power dynamics are slightly different in a non-statutory setting like I was working in. However, these power dynamics cannot be ignored, and underline all social work practice.I acknowledged the inherent power dynamics from the inception of my interactions with JK. I recognised that where unequal power dynamics exist in a relationship, it is usually the partner with the most power that benefits most from the interaction (Milner and OByrne, 2002). This is why it is important for social workers to listen to the perspectives of the people with whom they work, and be willing to accept different paradigms than their own or the dominant paradigm (Milner and OByrne, 2002). When working with JK, I was made aware of his engagement with mental health services, usually provided through the medical professions. He had an allocated community psychiatric nurse (CPN) who would visit occasionally, and at times he also met with a psychiatrist. Throughout my social work education, the difference between the medical model and the social model of experiencing mental illness has been stressed to me, and I clearly saw this when working with JK. The historically oppressive nature of mental health services is widely recognised in literature (Szasz, 1961; Foucault, 1967), and JK expressed to me at times that he felt that he was not listened to by medical professionals, and just moved from service to service having things done to him, rather than with him. Tew (2005) noted that the in the social model of mental distress, core values required include looking at the person and their situation holistically, removing the us and them thinking that tends to dominate mental health services, listening to what people really have to say, and being committed to anti-oppressive practice. I found these to be very helpful in working with JK. During Session A, the fact that I chose to explore JKs mental distress alongside the other issues that were going on in his life allowed me to identify that his physical health, including intense back pain that he has been experiencing, was having a substantial effect on his mental health, and I encouraged him to seek help and support with this. JK clearly appreciated my anti-oppressive approach, where I tried to work with him in partnership, and he was always keen to know when we would meet next. There is a stigma attached to having a mental illness, and even when contact with services has ceased, that stigma usually persists (Miles, 2005). JK had clearly been the subject of this stigma throughout his life. Tew (2005) believes if mental health services were more receptive to the social model of looking at mental distress, then significant amounts of this stigma and the resultant oppression would be removed. Applying Theory to Practice An important part of reflection in social work is the application and consideration of theories in practice (Trevethick, 2012). The theory base of social work is essential to all the work that we do in practice (Teater, 2010). Social workers need to be prepared to critically reflect on the theory that they are bringing to practice. It has been noted that the theory base of social work is dominated by euro-centric discourse, meaning that certain paradigms or perspectives may be excluded unintentionally (Trevethick, 2012). Being from Nigeria originally, and coming from a different cultural background than myself, meant that I had to be particularly careful in applying theory to the work that I did with JK.However, it is also clear that practice cannot just be based on routine or habit, with no basis in evidence (Thompson, 2009). The increasing influence of post-modern theory, which does not promote one paradigm over another, but focuses on the subjective nature of truth, has helped to alleviate these issues in social work to some extent (Fook, 2012). Our agency worked with some of the most marginalised and vulnerable members of society, and engaging in uninformed work with these types of service users is a dangerous undertaking (Collingwood et al, 2008). Through active engagement with reflection, I was able to work with JK using an eclectic theory and knowledge base, but was also careful to note if JK was not comfortable with some aspects of my approach, and adjusted the approach accordingly. Working closely with JK over a period of several months supported me to be able to identify any issues quickly, and by the time I we were engaged in Session A, we had a good working relationship. Of particular importance when working with service users who have a dual diagnosis was systems theory, and I found this theory to be particularly important when reflecting on Session A. Healy (2005) has recognised that systems theory have been highly influential on the knowledge base of social work. As noted above, people experiencing problems with addiction tend to have other issues in other areas of their lives (Tober and Raistrick, 2004).I was able incorporate specific applications of systems theory for the service user group I was working throughout my placement, and in particular with JK. The Six Cornered Addictions Rescue System (SCARS) was useful in that it took into account a person who was dealing with an addictions situation holistically, rather than just focusing on the addiction in isolation (McCarthy and Galvani, 2004). In Session A this allowed me to see how JKs addiction and mental health problems were also linked to issues with accommodation, physical health, relationships and employment. What could have been done differently? I have discussed my work with JK, and reflected on specific incidents and issues with him. However, returning to Schon (1983), he notes that reflection takes place within our own understanding and the meaning that we attribute to an event, rather than within the event itself. Therefore, social workers need to look at their own underlying assumptions, as well as dominant social narratives, in order to shape their holistic understanding and experience of a given incident. Dewey (1993) recognised the importance of discovering new information in reflection. This can come from both internal sources (personal reconsideration) and external sources (professional support or research), and this new information can completely re-construct the way that an incident or event is considered, and change the narrative that we are engaged in. This is helpful in reconsidering an event, and determining whether something could have been done differently or better. In relation to Session A, one area that I reflected on was that I may have focused too much on theory when working with JK. It has been recognised in literature around theory in practice that overly focusing on theory when working with service users can actually hinder the work being done, as the service user can feel depersonalised (Parker, 2010). As noted above, this was particularly important in the case of JK, who was from a different culture than me. More time could have been spent on listening to JK and his perspective, rather than trying to fit him into a theory or model for the sake of evidencing my own case notes or reflective journals. I worked with JK very much in isolation. Although I met his CPN and his drug worker, at no stage was a multi-agency meeting held that I was invited to. To some extent, this was the fault of the other professionals, who did not consult me on the work they were doing with JK, and literature has noted that collaboration is particularly difficult when working with dual diagnosis service users, as mental health and addiction services can disagree over the correct course, or who should take the lead (Clement et al, 1993; Champney-Smith, 2004). However, I could have made more of an effort to engage with them, or at least discuss with JK how much consultation he would like me to have with those other workers. Suter et al (2009) have found that a willingness to communicate is a key characteristic needed for effective collaboration, and after the other professionals were not active in engaging with me, I lost this willingness, potentially to the detriment of my work with JK. It has to be noted that reflection is not always recognised as a self-evidently positive mechanism. There are critics of the way reflection is promoted in current practice environments, with some bemoaning the cult following that has developed around reflection in the social work sphere (Ixer, 1999: 513). Boud and Knight (1996) equally describe how reflection has come to be seen as self-evidently worthwhile without significant critique (p.32). Ixer (1999) recognises that focusing too much on assessing reflection can lead to a prescriptive approach to reflection that is uncompromising. I found this to be the case at times, when I was expected to write my reflections at a certain time, and have reflective supervision in a certain way. As well as this, having someone essentially assessing my reflection made this even more difficult, as I was not able to reflect in a way that was personal for me. Parker (2010) has noted that reflection is not something that can be assessed based on traditional reductionist techniques. Therefore, I found it important to not just reflect on my work and the working environment, but also the process of reflection itself. Conclusion The issues that social workers are engaged with, and that I have discussed here, do not only reflect the concerns of the service user, but are a reflection of the issues that are inherent in wider society (Davis, 2007). Unequal power dynamics, concerns around oppression and issues with stigma are all societal problems that social workers need to engage with not just on a micro-level, but also a macro-level. To some extent this is an area that I found reflection lacking in. I was able to look at my own practice, and my own assumptions and narratives; however, I was unable to determine how best to address wider inequality and societal oppression of people like JK. In this reflective essay, I have explored my practice setting in relation to a particular case study. I introduced the placement setting and the case study, and then looked at my experience of reflection within this setting. I discussed how I engaged with different models of reflection, experienced power dynamics, and explored different interpretations of mental distress. I then moved on to look at how reflection promoted me to engage with theory in practice, in particular in relation to systems theory. Finally, I used this reflection to look at things that I could have done differently, including a decreased focus on theory and engaging more with other services. This type of critical reflection should be ongoing for social workers in practice, and to some extent it would be difficult to work in a complex setting like I was without being reflective. Although I noted some areas I could have improved on in my interactions with JK, what was most apparent in my work with him was that my willingness to explore his paradigm and perspectives opened him up to engaging with me on a range of issues, that otherwise may have remained hidden. References Atkins, S. and Murphy, K. (1994) Reflective Practice, Nursing Standard8(39) 49-56. Banks, S. (2006) Ethics and Values in Social Work, Basingstoke: Palgrave Macmillan. Cameron, A., Lart, R., Bostock, L. and Coomber, C. (2012) Factors that promote and hinder joint and integrated working between health and social care services, London: SCIE. Champney-Smith, J. (2004) Dual Diagnosis in T. Peterson and A. McBride (Eds.) Working with Substance Misusers: A Guide to Theory and Practice, London: Routledge. Clement, J., Williams, E. and Waters, C. (1993) The client with substance abuse/mental illness: Mandate for Collaboration Achieves of Psychiatric Nursing, 7(4), 189-196. Collingwood, P., Emond, R. and Woodward, R. (2008) The theory circle: A tool for learning and for practice Social Work Education, 27(1), 70-83. Davis, A, (2007) Structural Approaches to Social Work in J. Lisham (Ed.) Handbook for Practice Learning in Social Work and Social Care: Knowledge and Theory, London: JK. Dewey, J. (1993) How we Think: A restatement of the relation of reflective thinking to the education process, Boston: Health Publishing. DCruz, H., Gillingham, P. and Melendez, S. (2007) Reflexivity, its meanings and relevance for social work: A critical review of the literature British Journal of Social Work, 37, 73-90. Fook, J. (1999) Critical reflectivity in education and practice in B. Pears and J. Fook (eds) Transforming Social Work Practice: Postmodern Critical Perspectives, St Leonards: Allen and Unwin, 195-208. Fook, J. (2012) Social Work: A Critical Approach to Practice, London: Sage. Fook J. and Gardner F. (2007) Practising Critical Reflection: A Resource Handbook, Maidenhead: McGraw-Hill. Foucault M. (1967) Madness and Civilization: A History of Insanity in the Age of Reason, London: Tavistock. Gibbs, G. (1988) Learning by Doing: A guide to teaching and learning methods, Oxford: Oxford University Press. Healy, K. (2005) Social Work Theories in Context: Creating Frameworks for Practice, Basingstoke: Palgrave Macmillan. Holmes, G. and Saleeby, D. (1993) Empowerment, the Medical Model and the Politics of Clienthood, Journal of Progressive Human Services, 4(1), 61-78. Ixer, G. (1999) Theres no such thing as reflection British Journal of Social Work,29, 513-527. Knott, C. and Spafford, J. (2010) Getting Started in C. Knott and T. Scragg (eds.) Reflective Practice in Social Work, Exeter: Learning Matters. McCarthy, T. and Galvani, S. (2004) SCARS: A new model for social work with substance misuse  Practice, 16(2), 85-97. Milner, J. and OByrne P. (2002) Assessment in Social Work Basingstoke: Palgrave Macmillan.Parker, J. (2010) Effective Practice in Social Work, Exeter: Learning Matters. Miles, A. (1987) The Mentally Ill in Contemporary Society, Oxford: Blackwell. Parker, J. (2010) Effective Practice Learning in Social Work, Exeter: Learning Matters. Ruch, G. (2002) From triangle to spiral: reflective practice in social work education, practice and research, Social Work Education, 21(2), 199-216. Schn, D. (1983) The Reflective Practitioner, New York: Basic Books. Schon, D. (2002) From technical rationality to reflection-in-action in R. Harrison, F. Reeve, A. Hanson and J. Clarke (eds) Supporting Lifelong Learning: Perspectives on Learning, London: Routledge. Szasz, T. (1961) The Myth of Mental Illness: Foundations of a Theory of Personal Conduct, London: Harper and Row. Teater, B. (2010) An Introduction to Applying Social Work Theories and Methods, Maidenhead: Open University Press. Tew, J. (2005) Social Perspectives in Mental Health London: Kingsley. Thompson, N. (2009) Practicing Social Work: Meeting the Professional Challenge, Basingstoke: Palgrave Macmillan. Tober, G. and Raistrick, D. (2004) Organisation of Services Putting it all Together in T. Peterson and A. McBride (Eds.) Working with Substance Misusers: A Guide to Theory and Practice, London: Routledge. Trevithick, P. (2012) Social Work Skills: A Practice Handbook, Maidenhead: Open University Press. White, S. (2001) Auto-ethnography as reflexive enquiry: The research act as self-surveillance, in I. Shaw and N. Gould (eds), Qualitative Research in Social Work, London: Sage. Yip, K. (2006)Self-reflection in reflective practice: A note of caution British Journal of Social Work, 36(5), 777-788.

Thursday, September 19, 2019

North American and European Airline Industry Essay -- Business Managem

North American and European Airline Industry INTRODUCTION The Airline industry is one of the world’s largest industries generating over $300 billion in revenues in 2001 alone and additionally has the second highest industrial growth rate, after the computer industry, with typical growth rates of 3-5% per annum over the last 20 years (Humphreys, 2003; BA Fact book, 2002). For the purpose of this assignment, freight/cargo airline activities will not be considered as freight travel consists of only 2 % of total airline activity (see figure 3.1 and appendix 1) (BA Fact book, 2002, ICAO, 2003). Furthermore, due to the nature of the airline industry and the Asian market being a lot smaller and internally focused, we will concentrate on the North American and European markets which between them, account for 65% of the market (see figure 3.1 and appendix 1) (ICAO, 2003). Section 1:The main forces shaping the airline sector’s global business environment. The past two years has seen an unprecedented number of airlines, worldwide, filing for bankruptcy and many more would have followed suit had it not been for government intervention (Economist, 2002a). The main factors leading to their demise and to the problems currently faced by the airline industry in general, have their roots in the existing economic and political climate, which according to IATA (2002) continue to remain challenging. 1.1 Economic Forces facing the airline industry Since the performance/profitability of the airline industry is closely connected to the economic cycle (BA Fact Book, 2002), the importance of the global economic environment and the impact that it has on the industry cannot be underestimated (see figure 1.1). This is evident from the performance of the industry during the late 1990’s as profitability soared on the back of a buoyant world economy (characterised by the hype generated by the technological revolution; record levels of corporate activity etc) which fuelled demand for air travel. It is not surprising that the subsequent slump in air travel which began in the USA towards the end of 2000 and slowly spread to other parts of the world (Economist, 2001), corresponded to a change in the economic forces as the knock on effects of the US economic slowdown infiltrated the global economy. One of the main consequences of the g... ... flights and the introduction of ‘World Traveller Plus’ – a new business and economy product. These two markets of business and economy are perceived to be the most demanding and profitable in the future and therefore BA have additionally positioned itself well to take advantage of these developments (Economist, 2002b; BA Fact book, 2002). Therefore, the penetration and consolidation of markets, cost management and refocusing of culture and infrastructure assisted by the collaboration available within its OneWorld Alliance are placing BA in a healthier position to survive the turbulence that lies ahead. FINAL THOUGHTS The future of BA and that of many other airlines is going to depend on the highly volatile political and economic situation facing the world as seen in section 1. War in Iraq is creating an increased sense of panic in the world’s industries and therefore, an accurate forecast as to the airline industry development is somewhat convoluted and complex due to the overwhelming sense of uncertainty that prevails. Therefore, BA’s future positioning and its subsequent success within this sector is going to be decidedly susceptible to the worlds events.

Wednesday, September 18, 2019

Advertising to 40+ Women :: Essays Papers

Advertising to 40+ Women We here at More feel it is time to change the representation of older women in the world of advertising, starting first with our own publication. In order to find answers to the problem of women over 40 lacking a voice and presence in magazine advertisements, we have enlisted the help of several advertising agencies. Each company was asked to devise a unique plan of action to better included mature women in our ads. The following three advertising agencies—GSD&M, Kaplan Thaler, and Dimassimo—have been selected because their individual approaches to our dilemmas were most successful in their accurate portrayal of older women. So read on and discover how these creative advertisers were able to not only solve our advertising problem, but also how they were able to expand and diversify our world of advertising by including people that look and think like you. Over the last few decades, there has been a significant rise in the number of women receiving college educations and a decrease in gender discrimination due to federal law. These two societal factors have helped the average woman to attain a higher paying job than ever before in our history. Presently, women are earning over half of all accounting degrees, 4 out of 10 law degrees, and just about that many medical degrees (Krotz 1). Therefore this gender group, which makes up about half of the American population, has a lot of monetary power. As a result, when women reach the peak of their earning power, they will have money to burn (Krotz 1). Women reach this peak around the age of 40 or older. In the last year alone, of all the women who purchased a new car, 53% were over 40 and so were 60% of those who bought new computers (Quinlan53). Evidently, the majority of buyers are older women. So why then is there a noticeable lack of this age group of women in magazine advertiseme nts? This is due to the simple fact that â€Å"there’s an 18-34 demographic desirability locked into corporate America’s mindset† (Quinlan 53). As a CEO of an advertising agency, Mary Quinlan can identify very well with the lack of mature women in the media. She relates to us, â€Å"I’ve sat in too many casting sessions where I’d hear, ‘We need one older woman to round out these models.

Tuesday, September 17, 2019

The Issue of Gun Control Legislation Essay -- Gun Control Weapons Laws

The Issue of Gun Control Legislation One of the most controversial issues in our society is gun control legislation. Violence associated with guns is increasing every year and something must be done to stop it. Gun legislation varies in every state. In some states gun policy is stricter than in other states. Gun legislation should be abolished in favor of federal gun legislation. To analyze the problem with gun violence today you must understand the gun laws that are in effect. The gun legislation in the United States are mostly based on a state level. One federal law for example, prohibits the manufacture of all plastic guns. The federal government tightly restricts fully automatic guns. Manufactures stamp serial numbers on guns for law purposes. The government also has regulation on importation on guns brought into the country. Also, most states restrict the purchasing of long guns under the age of 18, and 21 for the purchase of handguns Most states prohibit the purchase of guns if you are: a convicted felon, alcoholic, drug addict, mentally ill person, alien, or a fugitive from justice. Some laws required prospective gun buyers, to get a purchase permit, which comes with applicant passing all background checks. A few states even require that all persons possessing guns must have a license to do so, even in their homes. Some states don’t ban guns from addicts. This is a problem. Gun conciliation is not the same in each state. If it was same, it would have been easier to decrease the criminal acts. Guns are a form of power. Many individuals, ‘including criminals’ feel powerful when carrying a gun. Half of the households in the United States possess a gun. Criminals use guns for satisfaction. For example, to obtain sexual gratification in a rape or money in a robbery, or more frequently, to frighten and dominate victims in some other assault. All of these things can be gained without an attack, and indeed the possession of a gun can serve as a substitute for attack, rather than its vehicle (Kleck,1991). A sample was done by police in 50 major cities to see who is more common to use a gun (Kleck,1991). The data included that gun use in homicides is more common when (1) the victim is male rather than female, (2) the victim is male and the attacker is female, (3) ... ...le will have question like â€Å"how will I protect my self from criminals? Many people argue that guns in households scare away many criminals. Criminals take major risks when they attempt an armed attack. They also can achieve major benefits. The benefits consist of the potential economic or other gains, however conceived, from the contemplated crime; the costs include the possibility of being caught and imprisoned, of being shot at in the course of the crime, either by the police or by the victim. The likelihood of social disapproval could be a negative factor. It has been known that one half of every household has at least one gun. If you restrict a victim’s options by limiting household guns, crime could rise highly. This new policy on gun control should help lead our nation in the right direction. The massacre at the Empire State Building was an example of how our gun legislation must be changed. The new federal gun legislation will provide equality among all states. Criminals will not have the option of buying a gun in a state with weak gun legislation. This new policy on gun legislation will cut down on violence dramatically.

Monday, September 16, 2019

Food Allergies Essay

Food allergies happen when our immune systems produce antibodies in reaction to a protein in food that is normally considered harmless. Food allergies are more common in people who come from families with a history of allergies, such as asthma, hayfever, or eczema. If your child has a food allergy, he will probably have an itchy or runny nose, a sore throat, itchy, watery eyes, rashes (hives) and swelling, which usually come on fairly quickly after eating the food. Food allergies are common in young children. It is estimated that between six per cent and eight per cent of children have a food allergy (Venter et al 2008). What is my child most likely to be allergic to? The most common food allergies in young children are to milk, eggs, peanuts and tree nuts. * Milk: Although this is not to be confused with milk intolerance. * Eggs: About two per cent of children under three are allergic to eggs. * Nuts: Just under two per cent of children are allergic to peanuts. Nut allergies in general are on the increase (Hourihane et al 2007). What symptoms should I look out for? It should be quite easy for you to tell if your child has an allergy. The symptoms include: * Hives (nettle rash) around your child’s mouth, nose and eyes, which can spread across his body. * Mild swelling of his lips, eyes and face. * A runny or blocked nose, sneezing, watery eyes. * An itchy mouth and irritated throat. * Nausea, vomiting and diarrhoea. More severe reactions, involving wheezing, breathing difficulties or a drop in blood pressure may be life-threatening and are known as anaphylaxis. Fortunately, severe reactions are rare in young children. If you suspect a child is having a severe allergic reaction, call an ambulance immediately. When your child reacts quickly to an allergen, it’s usually easy to spot. However, delayed allergic reactions to foods are becoming more common. Your child’s body will take longer to react, because different parts of his immune system are affected. Symptoms to look out for include: * reflux  * colic * diarrhoea * constipation * eczema, which is common in young children with a milk allergy Remember that all these symptoms are common in early childhood and an allergy is only one possible explanation. How is a food allergy diagnosed? If you think your child is allergic to a food, see your GP and ask for a referral to an allergy clinic. There are about 90 NHS allergy clinics in the UK, some of which specialise in children’s allergies (paediatric allergy), but you may not have one in your area. Your child may be seen by a general paediatrician, a dermatologist, or an adult allergy specialist instead. Your child will have a skin prick test as a first step, and these are very helpful, even for diagnosing allergies in small babies. Your doctor may also do blood tests. Always get medical help if you’re concerned. Don’t be tempted to buy commercial testing kits, which are sold online, by mail order or in health food shops. If your child is having a delayed allergic reaction to a food, the allergen is likely to be tracked down by a process of elimination. Your doctor will refer you to a dietician, who will work with you on a diet that cuts out various foods from your child’s meals. The dietician will review your child’s symptoms and slowly reintroduce the suspected allergen to his diet to see if the symptoms recur. Always talk to your doctor or a dietician before cutting food groups out of your child’s diet. Will my child grow out of his food allergy? It depends on what he’s allergic to. Up to 90 per cent of children will outgrow cow’s milk and egg allergies, for example, whereas only about 10 per cent to 20 per cent outgrow nut allergies. Some children may go on to develop other allergy-related, or atopic, conditions, such as asthma or hayfever, later in life. Read our article on allergies for more information. If your child has a food allergy, it’s essential that he is checked often by an allergy specialist, and that he is retested at intervals to see if he has outgrown his allergy. What are food intolerances? Young children can sometimes develop an intolerance to certain foods, which is different to an allergy, because it doesn’t involve the immune system. The terms are often confused. Your child has an intolerance if he has difficulty digesting certain food. He might have the following symptoms: * tummy pain  * colic * bloating * wind * diarrhoea * vomiting The most common intolerance in babies is milk, or lactose intolerance. This usually occurs after a tummy upset and may last a few weeks. If you suspect that your child has a food intolerance, see your GP. Never try to diagnose your child yourself, since there are other conditions that can cause similar symptoms, such as coeliac disease, a condition where the gut reacts to the gluten in grains (Bingley et al 2004). The food that troubles your child is identified in much the same way as an allergen that causes a delayed reaction. Your doctor will refer him to a dieticians, who will put him on an exclusion diet, where suspect foods are removed from his meals then slowly reintroduced. This helps to identify which foods are causing the problem. Living with a food allergy Once your child’s food allergy has been diagnosed, always follow your doctor’s or dieticians’ advice about avoiding trigger foods. Some children with mild allergies, for example to egg, might be able to tolerate the food in baked goods, whereas other children with severe allergies will have to avoid all traces of it. Holidays, birthday parties, eating out and days out will need more planning than usual, but you will soon get used to providing the right food and drink for your child or advising others on how to do so. Always remember to take your child’s medication with you on a trip out. This may be antihistamine medicine, or if your child is at risk of a severe reaction (anaphylaxis), he may also have an adrenaline pen (Epipen or Anapen) as well. Shopping for a special diet Shopping for a special diet can be a challenge at first. But once you get to know all the products that are suitable for your child, with help from your dietician or doctor, his diet will be varied, nutritious and tasty. There are now special â€Å"free-from† ranges in most supermarkets, and many stores provide lists of own-brand foods which are free from nuts, eggs and milk.

Commentary on Robert Frost’s ‘Out Out’

‘Out Out' is a poem that tells the story of a young boy cutting his hand off while chopping wood and then dies, and how those around him cope with the death. This poem shows many techniques which are quite common in Frost's poems; such as imagery, ambiguity and it also has a universal theme to it. This poem can be perceived to have several themes, one of which may be the lives of those living in rural areas and how they have to get on with their lives when they have lost someone close, because there is nothing else they can do. Another theme to the poem could be that of child labour in rural areas, and although the poem is set in Vermont, this is a universal theme, as child labour is known to exist all over the world. The first line of the poem, ‘The buzz saw snarled and rattled in the yard' does many things for the poem. For a start, the line sounds quite threatening to us and immediately we think that the saw will later become a problem or an issue. The line also personifies the saw, which further makes us believe that the saw will later play a major role in the poem. Frost also personifies the saw by using words like snarled and rattled which makes the saw seem beast-like. The word buzz is onomatopoeic which again personifies the saw. The next line, ‘And made dust and dropped stove-length sticks of wood' describes the saw's purpose in the poem; it makes us more familiar with the saw. The next few lines set the scene of the poem, ‘Five mountain ranges one behind the other, Under the sunset far into Vermont'. Some say that this is a reference to the bible, in Psalms*. The image that this line creates is soothing and contrasts with the first line, which can be perceived as being threatening. The phrase ‘Under the sunset' is ambiguous; it can be interpreted as a soothing image for some but for others it may resemble an ending of something more than just day. Generally, the first five lines set the scene of the poem. They tell us more about where the poem is set and what kind of life the boy lives- a rural life. The seventh line goes on to say ‘And the saw snarled and rattled, snarled and rattled', which is a repetition of the first line. The repetition here is used to show that a long time is passing by while the saw is being used and that perhaps the job is monotonous. This line also brings us back to the reality that the poem is trying to show us. The 2 lines just before line seven gives us a soothing and peaceful image but amongst all this beauty there is this saw, a saw that Frost describes as dangerous. ‘Call it a day, I wish they might have said' has a tone of regret and sympathy, showing that the persona knows what will happen to the boy, and this leaves us to think what will happen and we are left to fear the worst. ‘To please the boy by giving him the half hour that a boy counts so much when saved from work.' This line shows more regret and it is at this point that we realise that the poem involves a young boy and this saddens and worries the reader even more. The line also subtly suggests that if it was ‘called a day' then perhaps the incident with the saw would not have happened. In line 14, the boy's sister comes to him to tell him that it is time for dinner. At this point we are slightly relieved, as the word ‘supper' which is used in the line, relates to normality and we all feel safe in the domesticity and regularity of our own home and therefore, we think that perhaps what we had predicted to happen would not come true. Frost, again personifies the saw in lines 15 and 16, ‘At the word, the saw, as if to prove saws knew what supper meant†¦' Again, Frost makes us fear the worst, and in the next line our fears come true, ‘Leaped out at the boy's hand, or seemed to leap- He must have given the hand'. In the last phrase of this line, Frost has used irony; when someone gives their hand it usually means they are greeting someone or making an agreement on something. Frost words it in such a way as if he is suggesting that the boy welcomed the saw. He then goes on to say in line 18 ‘However it was neither refused the meeting. This again implies that the boy did nothing to stop the saw from hurting him. ‘The boy's first outcry was a rueful laugh'. In this line we are shown that the boy did not cry at first but laughed at his careless mistake, laughed as if to stop himself from crying, or perhaps just because the fact that he had hurt himself hadn't sunken in yet. When he showed his family what had happened he ‘swung toward them holding up the hand, half in appeal but half as if to keep the life from spilling'. In this line, the words ‘half' and ‘spilling' create very gory pictures in our minds. ‘Half' shows the image of half a hand, and ‘spilling' shows the image of red blood rushing out from his cut hand. ‘Then the boy saw all-‘. In this line Frost has used the word saw as a homonym; it could mean that he ‘saw' his life flash before him or it could mean ‘that he had sawed off all of his hand'. The pause after the word ‘all' creates suspense and emphasis and one again we are left to think of the consequences and of what will to the happen the boy. In line 25 we are told the boy's response ‘Don't let him cut my hand off- the doctor, when he comes. Don't let him sister!' This makes the whole poem even upsetting because throughout the poem we are told the story from an outsider but here in this line, we are suddenly given the boy's view on the accident. The poem reaches an anti-climax in line 32: ‘They listened at his heart. Little- less-nothing! – and that ended it.' As readers, it is almost impossible to believe that the boy died from the incident, and the fact that the word ‘death' is not mentioned makes us want to believe that the boy is not dead but has survived. However, some would say that the anti-climax was right at the end of the poem: ‘And they, since they were not the one dead, turned to their affairs'. Here, we would expect the family to grieve and not be able to carry on the way they used, because that is how we would expect people to react in today's world. The reaction that the boy's family has showed is that of stoicism and in today's world, even if we do not realise it, examples of stoicism are common. Throughout the poem, we can see many of Frost's common techniques that he uses in many poems. For example, in line 6 he uses ambiguity with the word ‘sunset' which was mentioned earlier on in this commentary. Many of Frost's poems are in a conversational tone such as ‘Mending Wall', ‘Home Burial' and ‘After Apple-Picking'. To make the poem more conversational in ‘Out Out', Frost has used words such as ‘so', so as to make it seem like a live conversation. It could also have been used a gap-filler in the poem. Overall, I think that ‘Out Out' is a poem to represent the sadness and grief that families have to go through when they lose someone close and how they have to carry on with their lives just because there is nothing else they can do. It is the harsh truth of losing someone close to you, someone you love.

Sunday, September 15, 2019

Ardagh Group International Management Trainee Programme.

Have you got global ambition? Explore our world on the Ardagh Group International Management Trainee Programme. Ardagh Group is one of the largest rigid packaging manufacturers in the world. We operate 100 facilities in 26 countries, specialising in research, development and production of metal and glass containers for the world’s biggest brands, manufacturing  32 billion containers a year. We’re looking for proactive, ambitious, dynamic new talent to join our other 18,000 employees to become future leaders of our company. The challenge: gt; Spend 30 months working in our business across multiple specialities (Corporate and plant operations,   commercial, IT, HR, procurement) > Tackle various strategic business assignments > Maximise your opportunity to develop a long-term career at Ardagh The requirements: > Graduate with a Masters or Bachelor degree > Maximum of three years’ working experience > Essential: English-speaking and able to travel > Willing to le arn additional languages > Ideally an engineering, economic, business or financial background > Flexible, results-driven team player gt; Be prepared to regularly re-locate and work in multiple countries The reward: > Intensive leadership and management development > International travel and all-round global business experience > Work in a technical, challenging operational environment > Clear career paths and future opportunities after programme > Professional development programme > Competitive benefit package All you have to ask yourself is:   ‘Am I ready to take on the world? ’ Application You must answer every question for your application to be considered. Please answer each of the following questions in 150 words of less: . Why do you want to be an Ardagh Group International Trainee? 2. Think of a goal that you have achieved and are proud of. Tell us what the goal was, describe how you achieved it, and explain why you are proud of it. 3. Think about an individua l or a team that you have helped achieve a goal. Tell us whether you led of supported the effort, and describe what you did. 4. Describe how you ensure that you communicate effectively with others. 5. Think about a team that you belong to. Briefly describe your role within that team and tell us what you like about it. 6.Describe how you have tackled a problem to deliver a successful project or action. 7. Give one example of a mistake you have made, including what you have learned from it. 8. Describe what ‘TRUST’ means to you and tell us how you build trust with others. We look forward to receiving your application including the answers of the questions above, motivation and c. v. Please send it to: Astrid. [email  protected] com Closing date: 15 April 2013 More information and applications: Internet:  www. ardaghgroup. com HR:Astrid Portegies: +31 13 579 2911 / Astrid. [email  protected] com

Saturday, September 14, 2019

Internship Handbook

Master of Public Health Program Internship Handbook 2010-2011 University of Missouri Master of Public Health Program University of Missouri 802  Lewis  Hall Columbia,  MO  65211 PHONE  (573)  884? 6844 FAX  (573)  884? 4132 http://publichealth. missouri. edu To Whom It May Concern: The Master of Public Health Program at the University of Missouri trains practitioners, teachers, researchers, and administrators to plan, implement, and evaluate programs aimed at enhancing health in human populations through organized effort on the local, state, and national level.Internships for MPH students fulfill a critical need for their public health experience and help build our community, state, and nation’s public health workforce. The following information is designed to guide and provide accountability for preceptors and interns in the University of Missouri Master of Public Health Internship program. Thank you for agreeing to work with the Master of Public Health Progra m to help provide experience for our graduate students. We appreciate your input into planning experiences and your feedback about students’ progress. Sincerely, Kristofer J.Hagglund, PhD, ABPP Director, Master of Public Health Program Tel: (573) 884-7050 Fax: (573) 884-4132 Email: [email  protected] missouri. edu University of Missouri Master of Public Health Program 2010-2011 MPH Internship Procedures University of Missouri Master of Public Health Program Internship Table of Contents Mission Statement†¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦ Policy for Pre-requisites†¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦.. Student Checklist†¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦ †¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦. Sample Schedule†¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦.. Preceptor Expectations†¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦.. Project Selection†¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦ Student Expectations†¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦..Faculty Advisor Expectations†¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢ € ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦ Internship Agreement†¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦.. Internship Statement of Purpose†¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦. Internship Progress Report†¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦ Preceptor Final Internship Evaluation†¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦.. Student Final Internship Evaluation†¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦. Guidelines for Final Paper†¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦ †¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦. 1 2 3 5 6 6 7 7 8 9 11 12 13 14 Appendices Appendix Appendix Appendix Appendix Appendix Appendix 1: 2: 3: 4: 5: 6: Competencies to Be Used for Internship Learning Objectives Self-assessment of Experience/Competency†¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦..Student Internship Interest Form†¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦.. Internship Description Form†¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦ Field Practicum Agreement†¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦.. Log of Hours†¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦Ã¢â‚¬ ¦.. 15 17 19 20 21 23 University of Missouri Master of Public Health Program 2010-2011 MPH Inter nship Procedures Mission Statement The mission of the Master of Public Health Program at the University of Missouri is to advance the well-being and quality of life of the citizens of Missouri and beyond through excellence in teaching, discovery, and service in public health.To harness the unique strengths of the University of Missouri in rural health, veterinary medicine, and policy analysis and development in addressing the needs of underserved populations and preparing public health leaders on the local, state, and national levels. Statement of Values The underlying values of the University of Missouri Master of Public Health Program include a strong commitment to creating a learning environment where evidence-based decision-making and bestpractices are focused on enhancing the common good.The core values of the University of Missouri (Respect, Responsibility, Discovery, Excellence) intersect with key public health values informing the program in several important ways: 1) Respec t for the diversity of our students and for the communities they will serve, including an understanding of issues involving equity and the special needs of vulnerable populations, 2) The Responsibility of the academy to bring rigor and excellence to the training of both future and currently practicing public health professionals and to make research findings accessible for use in the development of public policy, 3) The value of promoting and supporting the innovative interdisciplinary Discovery that is a unique strength of the discipline of public health, and 4) The necessity of holding leaders of population-based efforts to improve health to the highest standards of Excellence, including professionalism, solid grounding in international and national codes of ethics, and respect for individual dignity, social justice, and fairness. -1- University of Missouri Master of Public Health Program 2010-2011 MPH Internship Procedures Policy for Pre-requisites for the MPH Internship Before t he beginning of an internship, the MPH student must have completed 21 hours of coursework in the Master of Public Health Program, which should include following courses: P_HLTH 7150 Principles of Public Health P_HLTH 150 Human Health and the Environment P_HLTH 8920 Social and Behavioral Sciences in Public Health and either F_C_MD 8420 Principles of Epidemiology or NURSE 8100 Epidemiology for Public Health Practice and either STAT 7020 Statistical Methods in the Health Sciences or STAT 7410 Biostatistics Subtotal Credit Hours Other Elective Credit Hours TOTAL 3 3 3 3 3 3 3 15 6 21 Pre-requisite Waiver Policy: Waivers for students who would like to start their internships prior to completion of all pre-requisites will be considered on an individual basis by the student’s Faculty Advisor, Field Placement Coordinator, and the MPH Program Director. -2- University of Missouri Master of Public Health Program 2010-2011 MPH Internship Procedures Student Checklist Preparing for interns hip: (3 months before internship) ? 1.Revise Resume: Include information on education, previous work experience, and career goals. Keep length to no more than two pages. Contact your Faculty Advisor or the Field Placement Coordinator for assistance, if needed. 2. Complete Self-Assessment Form: This will help you to identify competency areas you want to emphasize during your internship. Turn in the self-assessment to the Field Placement Coordinator. See Appendix 2. The Student Internship Interest form is also helpful and available in Appendix 3. 3. Consider Potential Internship Sites: With the assistance of your Faculty Advisor and/or the Field Placement Coordinator, develop a listing of potential internship sites.Considerations include: geographical location, interest areas, career goals, and learning objectives. Review the opportunities posted on the MPH Program website. http://publichealth. missouri. edu/students/Internship%20Opportunities. php 4. Meet with Your Faculty Advisor: R eview potential internship opportunities, self-assessment, and interest areas with your Faculty Advisor and the Field Placement Coordinator as needed. (Special note: Your Faculty Advisor is identified in your https://myzou. missouri. edu account. ) 5. Contact Sites/Preceptors: Make contact with potential Preceptors to explore internship duties. Set up interviews (phone or in-person) and review information about the agency/organization.Treat contacts like job interviews; follow up with thank-you notes and inform the Preceptor promptly if you will be accepting the internship. 6. Finalize Internship Site and Preceptor: Contact your Faculty Advisor and the Field Placement Coordinator to finalize internship plans. ? ? ? ? ? Starting your internship: (within 2 weeks of starting internship) ? 7. Complete Statement of Purpose: Identify the MPH Program Competencies you plan to meet through your internship work, develop specific, time-sensitive, and measurable objectives, and estimate a timel ine for completion. The Statement of Purpose must be signed by the intern, Preceptor, and Faculty Advisor and returned to the Field Placement Coordinator at the start of the internship. 8.Complete Internship Agreement: Ask your Faculty Advisor and Preceptor to review your internship goals and objectives and complete the Internship Agreement. This document must be signed by the intern, Preceptor, and Faculty Advisor and returned to the Field Placement Coordinator at the start of the internship. 9. Complete Internship Log: Begin documenting hours and maintaining a record of activities on the Internship Log in Appendix 6. 10. Complete Field Practicum Agreement: Complete a Field Practicum Agreement if requested by the Field Placement Coordinator. These are needed for new and off-campus internship sites. See Appendix 4. ? ? ? Midterm: 11. Complete Internship Progress Report: Meet with your Preceptor about halfway through the internship to discuss progress. The intern and Preceptor must c omplete the Internship Progress Report and return it to the Field Placement Coordinator. -3- University of Missouri Master of Public Health Program 2010-2011 MPH Internship Procedures ? 12. Update Statement of Purpose: Update progress towards meeting objectives and timeline on the Statement of Purpose and return to the Field Placement Coordinator. Final: ? 13. Finalize Statement of Purpose: Complete the final column of the Statement of Purpose and address objectives that were met (or not met).This document must be signed by your Faculty Advisor, Preceptor, and the Field Placement Coordinator and turned into the Field Placement Coordinator. Complete all assigned internship activities within the internship period unless previous arrangements have been made. If it is clear that an internship-related student activity cannot be completed during the internship, discuss this with the Faculty Advisor as soon as possible. 14. Complete Student Evaluation of Internship: You must complete your Student Final Internship Evaluation within one week of completing the internship. Return the evaluation to the Field Placement Coordinator. A final grade will not be issued until the evaluation is received. 15. Request PreceptorEvaluation of Internship: Provide your Preceptor with a copy of the Preceptor Final Internship Evaluation and requests that it be completed and returned no later than one week following completion of the internship and turned in to the Field Placement Coordinator. 16. Finalize Internship Log: Finalize your log and turn in to the Field Placement Coordinator. 17. Complete Summary Report/Project: Submit a brief paper or report that summarizes your internship activities and accomplishments to your Faculty Advisor. See Guidelines for Final Paper. ? ? ? ? -4- University of Missouri Master of Public Health Program 2010-2011 MPH Internship ProceduresSample Schedule All documentation should be turned in to the Field Placement Coordinator in her MPH Program office. I. Required documentation schedule for 360 hours of internship in one semester For this option, register for 6 credits in one semester for P_HLTH 8980 Public Health Internship. Previous Semester ? Self-assessment ? Internship interest form (optional) Start of Semester ? Internship Agreement ? Statement of Purpose ? Field Practicum Agreement Midterm ? Internship Progress Report ? Updated Statement of Purpose Final ? Finalized Statement of Purpose ? Student Evaluation ? Preceptor Evaluation ? Final Paper ? Internship Log (if needed) *II.Required documentation schedule for 360 hours of internship spanning 2 semesters For this option, enroll in P_HLTH 8980 Public Health Internship for two semesters and divide 6 credits between these two semesters (e. g. combination of 2-4, 3-3 or 1-5). Previous Semester ? Self-assessment ? Internship interest form (optional) Start of First Semester ? Internship Agreement ? Statement of Purpose ? Field Practicum Agreement End of First Semester ? Internship Progress Report, ? Updated Statement of Purpose End of Second Semester ? Finalized Statement of Purpose ? Student Evaluation ? Preceptor Evaluation ? Final Paper ? Internship Log (if needed) Work closely with/contact Academic Advisor *This option is particularly helpful for summer interns that will not complete their internships by the grading deadline in early August.This avoids having to enter an â€Å"incomplete† grade for the summer semester. Students completing their internships in the summer should register for 3 credits for the summer semester and 3 credits for the fall semester. -5- University of Missouri Master of Public Health Program 2010-2011 MPH Internship Procedures Preceptor Expectations As you work with your student, please consider the following guidelines for the student experience: †¢ †¢ Provide an internship description well in advance for internship position advertisement. You may use our format for the advertisement (See Appendix 4). At the beg inning of the internship, complete agency-student contract with student and Faculty Advisor.Determine semester meeting dates and times for routine meetings with your student. (Other meetings can be scheduled as needed throughout the semester). Specify orientation activities you want your student to complete early in their experience. Clarify call-in procedure if student will miss or be late to the assigned daily experience. Provide a list of resources that you use (e. g. pamphlets/brochures), information from other agencies, other staff resources, etc. for students to use during the semester to help with project work and/or understanding the work of public health agencies. Review student’s progress on their project and notify Field Placement Coordinator if there are any concerns.Notify Field Placement Coordinator regarding any problems or concerns regarding student’s behavior. Discuss and plan with the student the type of final report you expect on the project(s). We e xpect that students will customize this report to the needs of your project. This report is flexible and may include written summaries, data disk, survey tool, teaching materials, etc. – whatever best serves your needs and the project(s) needs. Complete an evaluation of the student at the end of the internship experience and email Field Placement Coordinator. Share with student as you feel appropriate. Document your work and time as a Preceptor according to your agency’s evaluation protocol. †¢ †¢ †¢ †¢ †¢ †¢ †¢ †¢ _____________________________________________________________________________________ Project Selection We ask that preceptors and their agencies choose projects that they would like students to work on. When making choices for students, please consider the complexity of the project, time demands for the Preceptor and the student, timeliness of project deliverables, and feasibility for student the student to complete t he work, e. g. working with outside collaborators, having adequate resources, and similar constraints. After selecting a project, list in detail the steps involved in project. The student is responsible for coordinating with the MPH Program Faculty Advisors about the project selection. -6-University of Missouri-Columbia Public Health Program 2010-2011 MPH Internship Procedures Student Expectations During this course, you will be gaining experience in a public health agency and working with a Preceptor on a specific project. The agency and the Preceptor are volunteering to assist you in meeting your educational goals. General student expectations for this experience are listed below: †¢ †¢ †¢ †¢ Contact the Preceptor/agency regularly to discuss progress on your project. Accomplish activities as stated in the Internship Statement of Purpose contract. Participate in activities offered by the Preceptor in addition to the work on your project.Inform the Preceptor/agen cy and clinical instructor about problems/issues related to population and/or project work. Any unresolved issues may be brought to your Faculty Advisor and the MPH Program Administrative Staff. Be responsive to Preceptor/agency requests. Demonstrate professional behaviors, including appropriate dress, language, punctuality, call-in procedure, and discussion with clients and health professionals. †¢ †¢ Preceptors will evaluate your performance based on these expectations. The internship is a pass/fail program. The work on your project must meet the needs of the agency/Preceptor for you to pass the internship. Faculty Advisor ExpectationsThe Faculty Advisor is a very important academic figure during the internship process. He/she serves along with the Field Placement Coordinator as a bridge between the student and the Preceptor as needed. The role of the Faculty Advisor becomes more important when the student faces problems during the internship. He/she must work in conjunc tion with the Field Placement Coordinator to sort out any problematic issues. Further, considering development of the student and current competitive environment, the Faculty Advisor should be prepared to discuss the following with prospective interns: 1. Will this project be at graduate student level? 2. Is this project going to meet MPH Program Competencies (see Appendix 1)? 3.Will it lend itself to a capstone project? (This is not required but desirable for students who are seeking publications or PhD. ) -7- University of Missouri Master of Public Health Program 2010-2011 MPH Internship Procedures INTERNSHIP AGREEMENT UNIVERSITY OF MISSOURI MASTER OF PUBLIC HEALTH PROGRAM STUDENT STATEMENT: I, ________________________________________ agree to perform my internship at the agency and with the Preceptor named below. I understand that in order to satisfy the internship requirement, my proposed project(s) must have the approval of the Preceptor and the Faculty Advisor. I have attached learning objectives and activities with this contract.I agree to complete all pre-internship requirements (readings, physical exams, background checks, etc. ) as requested by the sponsoring agency. I understand that I must complete approximately 360 clock hours to satisfy program requirements. This might be completed as a single full-time block (about 9 weeks at 40 hours per week) or part-time during the course of several months and up to one year. The current internship will be approximately _______ hours/week for _______ weeks. Compensation for this internship period will be $_________ per _________. I understand I may or may not receive compensation. I understand that if I do receive compensation, it will be from the agency and not from the University of Missouri.I understand that I may or may not be covered by the agency’s worker compensation benefit, and I agree to obtain health insurance in the event I will not be covered by the agency for worker’s compensation. I understand that the Preceptor and Faculty Advisor will evaluate my progress jointly. I will present all report materials in the format requested by the Preceptor and/or the Faculty Advisor. I understand that if my performance is not satisfactory, I may be re-assigned by the Faculty Advisor. I will complete all required evaluations and documentation as specified in the MPH Internship Procedures and submit them to the MPH Program Associate Director. I understand that a final grade will not be issued until the Faculty Advisor receives all paperwork.With respect to the agency, I agree to maintain privacy regarding any information with special confidentiality requirements (patient information, financial information, etc. ). Student Signature: _____________________________________________ Date: ___________________ Preceptor Signature: ____________________________________________________________________ (Title) Agency/Organization:________________________________________________Date:___ ___________ Major Program Advisor Signature: _____________________________________Date:_______________ (If Needed) Dual Degree Advisor Signature: __________________________________________ Date: ___________ -8- University of Missouri Master of Public Health Program 2010-2011 MPH Internship Procedures INTERNSHIP STATEMENT OF PURPOSEUNIVERSITY OF MISSOURI MASTER OF PUBLIC HEALTH PROGRAM (Attach more information if needed) Instructions: 1. Complete the first three columns of the table at the start of the internship. Competencies may be selected with the help of the Faculty Advisor and Field Placement Coordinator and can be found in Appendix 1. 2. Objectives should be measurable and specific to the internship project (e. g. develop a survey for assessing barriers to breast-feeding in low-income women). 3. Once completed, the Statement of Purpose must be signed by the Faculty Advisor, Preceptor, and intern and a copy turned in to the Field Placement Coordinator. 4. At Midterm and Final, the objectives should be re-evaluated and addressed in the appropriate column.The overall purpose of my internship is: ______________________________________________________________________________ ______________________________________________________________________________ ______________________________________________________________________________ ______________________________________________________________________________ COMPETENCIES OBJECTIVES ESTIMATED COMPLETION DATE MIDTERM PROGRESS FINAL EVALUATION -9- University of Missouri Master of Public Health Program 2010-2011 MPH Internship Procedures Page 2 – MPH PROGRAM INTERNSHIP STATEMENT OF PURPOSE COMPETENCIES OBJECTIVES ESTIMATED COMPLETION DATE MIDTERM PROGRESS FINAL EVALUATION Preceptor: _________________ Date: _______ Midterm: _________________ Date: _______ Final: ____________________ Date: _______ Advisor: _______________ Date: __________ (At the start of internship) Student: _______________Date: ______ Field Placement Coordinator________ ____ Date:_______ Midterm: ______________ Date: _______ Final: _________________ Date: _______Midterm: _____________________________Date:_________ Final: _________________________________Date:________ -10- University of Missouri Master of Public Health Program 2010-2011 MPH Internship Procedures INTERNSHIP PROGRESS REPORT Preceptor and Intern: Complete this form about halfway through the internship. Return this form to the MPH Program Administrative Associate, University of Missouri Master of Public Health Program, 802 Lewis Hall, Columbia, MO 65211. Student Name: ________________________________________________________________________ Internship Site: _______________________________________________________________________ Preceptor: ___________________________________________________________________________ (Title)Period Covered by Progress Report: _____________________________through ___________________ Total Hours Worked to Date: ___________________ _________________________________________ Activities observed and/or participated in during this period: ___________________________________ _____________________________________________________________________________ ________ _____________________________________________________________________________________ A. Student Intern Comments: 1. Brief description of Internship to date: 2. Self-assessment of progress/accomplishments: -11- University of Missouri Master of Public Health Program 2010-2011 MPH Internship Procedures PRECEPTOR FINAL INTERNSHIP EVALUATION Preceptor: Complete this evaluation within one week following the completion of the internship. Please return the evaluation to the MPH Program Administrative Associate, University of Missouri Master of Public Health Program, 802 Lewis Hall, Columbia, MO 65211.Student Name: ________________________________________________________________________ Internship Site: ________________________________________________________________ _______ Preceptor: ___________________________________________________________________________ Internship Dates: from _______________________________ through ___________________________ Please evaluate the intern’s performance and University of Missouri Master of Public Health Program faculty and staff participation during the internship period (please feel free to submit any additional attachments): 5 – Excellent 4 – Above Average 3 – Average 2 – Below Average 1- Needs Improvement NA – Not Applicable A. Internship Performance: Reliability (attendance, punctuality, etc. ) Initiative Organizational Skills Enthusiasm for Project(s) Time Management (completing projects, etc. ) Independence in Project(s) Team Skills Exercised Appropriate Judgment 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 NA NA NA NA NA NA NA NAStudent competency goals (from Statement of Purpose) achieved 1_______________________________ 2___ ____________________________ 3_______________________________ 4_______________________________ 5 5 5 5 4 4 4 4 3 3 3 3 2 2 2 2 1 1 1 1 NA NA NA NA Additional comments: __________________________________________________________________ ____________________________________________________________________________________ (Signature of Preceptor) (Date) -12- University of Missouri Master of Public Health Program 2010-2011 MPH Internship Procedures STUDENT FINAL INTERNSHIP EVALUATION Return this form to the MPH Program Administrative Associate, University of Missouri Master of Public Health Program, 802 Lewis Hall, Columbia, MO 65211 within one week of completing the internship.Student Name: ________________________________________________________________________ Internship Site: _______________________________________________________________________ Preceptor: ___________________________________________________________________________ Internship Dates: from ________________________ thro ugh _____________________________ Please answer the following questions including the comments section. SA: Strongly Agree SD: Strongly Disagree A: Agree D: Disagree NA: Not Applicable 1. My internship contributed to the development of my career interests. 2. My internship provided me with new information and skills. 3. My internship provided an opportunity to use theory and/or information obtained in the classroom. 4. My internship activities were relevant to my learning objectives. 5. My preceptor was accessible to me and provided adequate supervision. . My preceptor provided information regarding agency policies and standards of practice. 7. My preceptor was knowledgeable in his/her area of responsibility. SA SA SA A A A D D D SD SD SD NA NA NA SA SA SA SA A A A A D D D D SD SD SD SD NA NA NA NA Comment: _________________________________________________________________________ __________________________________________________________________________________ _____________________ _____________________________________________________________ (Signature of Student) (Date) -13- University of Missouri Master of Public Health Program 2010-2011 MPH Internship Procedures Guidelines for Final PaperThe student must submit to the Field Placement Coordinator a brief paper or report that summarizes internship activities and accomplishments. The format of the summary may vary, but it should sufficiently describe the scope of the intern’s activities and any special projects undertaken. Include views on the experience, achievement of learning objectives, strengths, and weaknesses. * †¢ †¢ †¢ †¢ 2-3 pages, not more than 1000 words. Use font of Times New Roman with size of 12. Double-spaced lines. Due one week after completion of internship. *In particular, please elaborate on one of the following cross-cutting competencies, stating how your internship experience has helped in achieving it.Use the basic concepts and skills involved in culturally ap propriate community engagement and empowerment with diverse communities. Cite examples of situations where consideration of culture-specific needs resulted in a more effective modification or adaptation of a health intervention. Describe the attributes of leadership in public health. Apply social justice and human rights principles when addressing community needs. Embrace a definition of public health that captures the unique characteristics of the field (e. g. , population-focused, community-oriented, prevention-motivated and rooted in social justice) and how these contribute to professional practice.Distinguish between population and individual ethical considerations in relation to the benefits, costs, and burdens of public health programs. In collaboration with others, prioritize individual, organizational, and community concerns and resources for public health programs. Explain how the contexts of gender, race, poverty, history, migration, and culture are important in the design of interventions within public health systems. Analyze the effects of political, social and economic policies on public health systems at the local, state, national and international levels. -14- University of Missouri Master of Public Health Program 2010-2011 MPH Internship Procedures APPENDIX 1Competencies to Be Used for Internship Learning Objectives Biostatistics 1. Propose preferred methodological alternatives to commonly used statistical methods when assumptions are not met. 2. Develop written and oral presentations based on statistical analyses for both public health professionals and educated lay audiences. 3. Partner with communities to attach meaning to collected data. Epidemiology 1. Evaluate the integrity and comparability of data and identify gaps in data sources. 2. Select and define variables relevant to defined public health problems. 3. Obtain and interpret information regarding risks and benefits to the community. 4.Design and evaluate surveillance systems for mic robiological hazards to human health of animal origin including new, emerging and re-emerging zoonotic diseases, foodborne diseases, and those due to antimicrobial resistant bacteria. 5. Communicate epidemiologic information to lay and professional audiences. Health Policy and Management 1. Differentiate and analyze the social determinants of health status. 2. Evaluate the effects of political, social, and economic policies on public health systems at the local, state, national, and international levels. 3. Use information technology to access, evaluate, and interpret data and influence public health policy. 4. Solicit and interpret input from individuals and organizations about public health issues and/or programs. 5.Design and adapt approaches to problems that take into account cultural differences. 6. Build and manage partnerships and work as an effective member of a diverse and/or interdisciplinary team. Social and Behavioral Science in Public Health 1. Analyze the causes of soc ial and behavioral factors that affect health of individuals and populations. 2. Compare and contrast the effectiveness of social and behavioral models in addressing public health problems. 3. Evaluate the impact of social and behavioral science interventions and policies on public health programs and outcomes. 4. Establish targets and formulate interventions for social and behavioral science programs and/or policies. 5.Design public health programs and strategies responsive to the diverse cultural values and traditions of the communities being served. Environmental Health 1. Develop a testable model of environmental insult. 2. Outline a health impact assessment of a public policy proposal or infrastructure development proposal. 3. Effectively communicate about and manage environmental risks. 4. Interpret and construct logical arguments concerning the balance of individual and community risks, rights, and benefits. -15- University of Missouri Master of Public Health Program 2010-201 1 MPH Internship Procedures 5. Identify, evaluate, and devise intervention strategies for the prevention and control of foodborne disease threats. 6.Provide health education and/or extension education services to a wide array of stakeholders including farmers, food processors, and the general public. 7. Conduct biomedical research and engage in production and control of biological products and medical devices. Communication 1. Collaborate with communication and informatics specialists in the process of design, implementation, and evaluation of public health information programs. 2. Use the media, advanced technologies, and community networks to communicate information. 3. Use informatics and communication methods to advocate clearly and effectively for community public health programs and policies. -16- University of Missouri Master of Public Health Program 2010-2011 MPH Internship Procedures APPENDIX 2SELF-ASSESSMENT OF EXPERIENCE/COMPETENCY Below you will find summarized versions of the competencies with which each MPH student, regardless of Emphasis Area, will be expected to graduate. The full, detailed list of competencies is available on the MPH Program website. The completion of this self-assessment will serve both as a guide for individuals in shaping their internship and capstone experiences and for the program as a whole, in evaluating and revising our curriculum. For each question, please record your answer on the attached answer sheet according to the following scale: 1. NO EXPERIENCE 2. AWARE 3. KNOWLEDGEABLE 4. PROFICIENT 5. N/A BIOSTATISTICS 1.Be able to identify data sources and apply descriptive and inferential methodologies for answering research questions, as well as describe preferred methodological alternatives to commonly used statistical methods when assumptions are not met. 2. Develop written and oral presentations based on statistical analyses for both public health professional and educated lay audiences while applying ethical principl es to the collection, maintenance, use, and dissemination of data and information. ENVIRONMENTAL HEALTH SCIENCES 3. Analyze the impact of environmental and occupational hazards on population health. 4. Describe prevention, control, risk management, and communication strategies in relation to the issues of environmental justice and equity at local, national, and global levels. 5.Explain the physiological, psychosocial, biological, molecular, and toxicological effects of environmental and occupational insults on population health. EPIDEMIOLOGY 6. Describe and quantify health problems in terms of magnitude, person, time, and place in the community and understand the application of community-based participatory research. 7. Calculate basic epidemiology measures and evaluate the integrity and comparability of data. 8. Understand basic survey design, its ethical and legal principles, and analysis with appropriate epidemiological and inferential methods. (Continued†¦. ) -17- Universit y of Missouri Master of Public Health Program 2010-2011 MPH Internship Procedures HEALTH POLICY AND MANAGEMENT 9. Describe the history, structure, and emerging advances in health care systems.Identify, differentiate, and describe the elements of the organization, financing, functioning, regulation, and delivery of health services and understand the consequences of changes to those systems, including unintended ones. 10. Understand the social determinants of health status and analyze the impact of political, social, legal, ethical, technological, cultural, and economic factors on public health policy and delivery systems at local, state, national, and international levels. 11. Articulate and analyze the principles of strategic planning, program development, budgeting, marketing, and evaluation through the use of quality and performance improvement tools and community and stakeholder participation. 12. Partner with communities to identify risks, enefits, and limitations of public heal th programs and recognize ethical, political, scientific, and economic issues arising from them. SOCIAL AND BEHAVIORAL SCIENCES 13. Understand the theories, concepts, and models of social and behavioral change and apply evidence-based quantitative and qualitative approaches for program planning, implementation, and evaluation of public health interventions at primary, secondary, and tertiary levels. 14. Differentiate between linguistic competence, cultural competency, and health literacy and understand the importance of cultural diversity in the development and implementation of community-based public health interventions. COMMUNICATION 15.Understand the role of public health communications in the dissemination of health information to diverse communities and demonstrate written, oral, and informatics skills that advocate clearly and effectively for public health programs and policies to both professional and lay audiences. 16. Collaborate with communication and informatics speciali sts in the process of design, implementation, and evaluation of public health programs. 17. Use the media, advanced technologies, and community networks to communicate information. Comments: _____________________________________________________________________________________ _____________________________________________________________________________________ _____________________________________________________________________________________ _____________________________________________________________________________________ -18-University of Missouri Master of Public Health Program 2010-2011 MPH Internship Procedures APPENDIX 3 Student Internship Interest Form Consider the following areas as a guide while preparing to select an internship. Write responses in the space provided if you wish to review this form with your Faculty Advisor or the Associate Director. SETTING/TYPE OF AGENCY: Types of agencies/organizations (e. g. hospital, health department, industry governmental agenc y, etc. ) that you believe would provide the kind of educational and professional experience you need: SKILLS: Any special skills you wish to use or develop during the internship: SUBJECT/CONTENT AREAS: Content areas (e. g. ealth promotion, infectious diseases, social issues, etc. ) in which you might like to work: LOCATION: List in order of preference the geographic location(s) you would prefer: SPECIAL POPULATIONS: Any special populations you would like to work with (e. g. , children, women, persons with disabilities, etc. ) PERSONAL NEEDS: Consider all personal needs that could constrain your placement at a particular site (e. g. accommodations needed as per ADA, religious considerations, etc. ) TIMING: Any preferences regarding timing, including work schedule requirements, time of year requirements, etc. FINANCIAL: Not all public health internships are paid. Do you need a paid internship? Yes/NoOUT-OF-TOWN: Have you considered out-of-town internship (e. g. CDC)? If you are inter ested in an out-of-town internship, are you able to take care of transportation and housing during that time: Yes/No OTHER COMMENTS: Please provide any other information that would assist the MPH faculty in finding an appropriate internship for you. -19- University of Missouri Master of Public Health Program 2010-2011 MPH Internship Procedures APPENDIX 4 INTERNSHIP DESCRIPTION FORM Agency: ______________________________________________________ Department name: _______________________________________________ Overview of the program: ________________________________________Overview of the internship: _______________________________________ †¢ When are these positions offered? o Time frame: Open fromo Hours required: Location: On-site Vs Off-site Pay/ Stipend: Accommodation: Yes/No to- †¢ †¢ †¢ Qualifications: ___________________________________________________ Application deadlines: ___________________________________________ Travel: _______________________________ ___________________________ Contact information: _____________________________________________ -20- University of Missouri Master of Public Health Program 2010-2011 MPH Internship Procedures APPENDIX 5 Field Practicum Placement Agreement Between The Curators of the University of Missouri AndThis agreement is made on the day of , , between the Curators of the University of Missouri, for the Master of Public Health (MPH) Program, University of Missouri, hereinafter referred to as â€Å"the University† and hereinafter referred to as â€Å"the Agency†. It is mutually agreed by the University and the Agency that the practicum experience for students, in the field of Public Health, will be provided at the agency. The number of students assigned at a given time shall be determined by the Agency. Representatives of the Agency and the University shall cooperate in developing methods of instruction, objectives and other details of the field experience. The faculty of the Univers ity will assume responsibility for the selection and assignment of students to the learning experience. The students shall follow the Agency’s rules, regulations and procedures.If problems arise, the Field Placement Coordinator for the University shall be notified and representatives from the University and Agency will mutually handle such problems. Students will receive a thorough orientation to the Agency setting. University faculty members and Agency staff supervisors will evaluate the students’ performances by mutual consultation. The Agency will retain full responsibility for the clients of the Agency and will maintain administrative and professional supervision of students insofar as their presence affects the operation of the Agency and/or the direct or indirect provision of services for clients of the agency.The Agency shall be responsible for arranging immediate care in case of accident or illness of students but is not responsible for the costs involved, foll ow-up care or hospitalization. It is understood that assigned students are not University employees and therefore are not covered by Social Security, Unemployment compensation or Worker’s Compensation through the University. The University and the Agency do not and will not discriminate against any applicant for the field experience because of race, color, religion, sex, handicap, national origin, age, or status as a Vietnam era veteran. -21- University of Missouri Master of Public Health Program 010-2011 MPH Internship Procedures This agreement shall begin on the date set forth above in the initial paragraph of the Agreement and shall terminate on the 31st day of August, , provided, however, that the Agreement shall continue thereafter automatically for successive one-year terms running from September 1 to August 31, subject, however, to the right of either party to terminate the agreement, without liability or cause, at the end of the initial term or at the end of any subse quent annual term by giving the other party prior written notice no later than August 1st immediately preceding the beginning of the next successive annual term on September 1st.IN WITNESS WHEREOF, the parties hereto have caused this instrument to be duly executed by their properly authorized representatives. THE CURATORS OF THE UNIVERSITY OF MISSOURI Agency Name Signature Title Date Agency’s Mailing Address & Phone Number _________________________________ __________________________________ __________________________________ ( ) __________________________ -22- University of Missouri Master of Public Health Program 2010-2011 MPH Internship Procedures APPENDIX 6 LOG OF HOURS (for University of Missouri Master of Public Health Program Internship) Intern: ________________________ Duration: ______________________ Preceptor: