Archive for December 27th, 2019

Description of a social problem in your community

  Assignment Content

  1. Social change can require a large movement, or a small intervention, depending on the type of change you are trying to implement. This assignment helps you apply what you have learned this week to a situation in your community where social change may be necessary.

    Review the Microsoft® PowerPoint® resources to enhance your presentation.

    Create a 6- to 10-slide Microsoft® PowerPoint® presentation on social change in your community.

    Include the following:

    • Description of a social problem in your community
    • Examples include graffiti in parks, destruction of community property, property theft, parking violations, speeding, improper disposal of pet waste, and improper landscaping.
    • A theoretical perspective on social movements to apply to this problem
    • Include a description of how this perspective proposes to address this problem and create social change.
    • The possible social influences or agents for change to address the problem in your community
    • Include detailed speaker notes for each slide.

      Submit your presentation.

 
 
 

Gerontology Paper

For this assignment, you are required to read the “Finding the Frame” article found under the content section of Beachboard. Your assignment is to type a 3-4-page essay on how aging and ageism impacts our society. Use this essay as an opportunity to frame your own solution to the issues presented in this report and discuss what your recommendations would be to change the direction of this narrative. You will also discuss what must happen at various governmental levels to have your solutions executed, in your opinion (Reality Check section, see below). Devote 1-1 ½ page(s) to a summary of the issue(s), and the rest of the paper should be used to present your thoughts on your possible solutions. In addition to the Finding the Frame article, please reference a minimum of three outside sources related to your paper (at least four total sources, your textbook may be a source as well). Keep in mind, this is a narrative paper (first person) and the purpose of this assignment is for you to think critically about the issue of ageism/ aging and explore your thoughts, feelings and solutions on these issues. Write creatively and honestly in explaining your ideas and what society will look like when your solutions are implemented. Furthermore, discuss specific ways you would put your solutions into place. Imagine that it is all up to you and you alone to make these aging issues better and more manageable, what steps are you going to take at various levels to better ageism issues. Format: 3-4 pages, APA (6th ed)- Double-spaced; Times New Roman, Size 12 Font, with a minimum of four sources (including Finding the Frame article) cited in APA format. ***Do not forget to cite sources in text, as well as in a reference list. No Title page and Abstract necessary. Reference Page is not included in page count 

.

.

.

.

For more information please follow up with the instruction document in the attachment and the needed paper is also in the attachment as well. 

I need very good job in the paper so I can make sure I get an A.

thanks,  

Respond to the following two questions with two pages answer for each one. Separate responses from each question.

Tasks: Respond to the following two questions with two pages answer for each one. Separate responses from each question.

Guidelines: Support your responses with scholarly academic references using APA style format. Assigned course readings and online library resources are preferred. Weekly lecture notes are designed as overviews to the topic for the respective week and should not serve as a citation or reference.

In your discussion question response, provide a substantive response that illustrates a well-reasoned and thoughtful response; is factually correct with relevant scholarly citations, references, and examples that demonstrates a clear connection to the readings

Q1 – Choose a middle-range theory or grand theory that, in your opinion, can be applied to research. What are the assumptions underpinning this theory? Discuss how this theory finds application in research.

Q2– Choose a middle-range theory or grand theory that, in your opinion, can be applied to practice. What are the assumptions underpinning this theory? Discuss how this theory finds application in your area of practice.

Respond to the following two questions with two pages answer for each one. Separate responses from each question.

Tasks: Respond to the following two questions with two pages answer for each one. Separate responses from each question.

Guidelines: Support your responses with scholarly academic references using APA style format. Assigned course readings and online library resources are preferred. Weekly lecture notes are designed as overviews to the topic for the respective week and should not serve as a citation or reference.

In your discussion question response, provide a substantive response that illustrates a well-reasoned and thoughtful response; is factually correct with relevant scholarly citations, references, and examples that demonstrates a clear connection to the readings

Q1 – Choose a middle-range theory or grand theory that, in your opinion, can be applied to research. What are the assumptions underpinning this theory? Discuss how this theory finds application in research.

Q2– Choose a middle-range theory or grand theory that, in your opinion, can be applied to practice. What are the assumptions underpinning this theory? Discuss how this theory finds application in your area of practice.

Object-Oriented Application

So far, you have learned about design and how to create a simple Java application using an IDE. Now, you are going to gain some experience writing an object-oriented program with classes, objects, inheritance, and polymorphism. These terms sound complex, but you will find they are not difficult to use. You will be drawing on all the information you have gained, and this project will require some time, so start early, and pay attention to instructions.

For this project, you will create a Java program that allows the user to select a category of animal from a menu and then a specific animal in that category, then view information about their selection. To facilitate this, we will use a class and inheritance structure as follows:

Program/Main Class: AnimalInfo. This file is for the code (in the method “Main()”) that will run the program, present the list, prompt for input, execute the appropriate class method, and then terminate. Note that this file may not include any information about the categories of animals or any specifics about animals. That information comes from the inheriting classes discussed below.

  • Create a project called “AnimalInfo”.
  • Using the method “Main()”, present the user with three animals and ask them to select one to learn more about that animal. The animals in the menu must match your “inheriting classes” discussed below.
  • When the user selects an animal from the menu, execute the “displayInfo()” method from the appropriate inheriting class.
  • Use code comments to annotate your source code, indicating what each line of code does as well as how it works.

Parent Class: (Name to be determined.) This file is for the broad category of animals that the user can examine in your program, such as dogs, horses or fish. Your program may contain only one parent class (users will only be able to select from a single category of animals).

  • Create a class file, naming it according to the category of animals that you’ve decided to use.
  • Do NOT inherit another file/class. (Do not use the “extends” keyword in the class declaration.)
  • Create a method in your class file called “displayInfo()”.
  • This displayInfo() method will only be executed if inheritance fails, so in displayInfo(), write code that reports to the screen that this parent class has been engaged by mistake. For example, if executed this method will generate user-friendly text on the screen such as: “Incorrect class inheritance, please contact technical support.”
  • Use code comments to annotate your source code, indicating what each line of code does as well as how it works.

Inheriting Classes: (Names to be determined.) Create three class code files that inherit from the parent class discussed above. For example, if you named your parent class “Dogs”, then your inheriting class files might be “Bulldog”, “Beagle” and “Poodle”. (You may not use those examples for your program.)

  • Create three class files, reflecting the animals listed in the menu that was presented to the user.
  • Within each of these class files, declare the class so that it inherits your parent class (using the “extends” keyword).
  • In each class, create a method called “displayInfo()” so that it will override the same method in the parent class. (This will cause text about the selected animal to appear on the screen instead of the error report you wrote for the same method in the parent class.)
  • The text must be a short description of the animal, such as where they live and/or their physical parameters and something interesting about them (1 paragraph of no more than 3-4 sentences). (You do not need to cite your source for this information.)
  • Use code comments to annotate your source code, indicating what each line of code does as well as how it works.

Create a ZIP file that includes your project folder and Word document and upload it to the course portal.

 
 
 

Summarize – Cross Cultural Management

Need help to write essay (summarize the notes with examples and analysis) to help me prepare for my exam. 

 

1)  Cultural Environments  (2 page)

2)  Organisational Environment  (2 page)

3)  Cross Cultural Communication  (2 page)

4)  Global Partnerships and Negotiations  (2 page)

 

I will provide the notes to you 

 
 
 

How Do I Make A Matrix?

How do I make a matrix? Here is the assignment so you have an idea what I am speaking about.

After watching the documentary on Palestinian Weddings

After watching the documentary on Palestinian Weddings (access here: https://www.aljazeera.com/programmes/aljazeeraworld/2016/08/palestinian-wedding-160830122422677.html) (Links to an external site.)Links to an external site.

you will write a short essay (approx. 600-700 words) discussing the role of music and dance in this major week-long celebration.

Grading standards: 60% content/quality of responses; 40% academic writing (proofread for errors in grammar, syntax, spelling).

This tool was successfully loaded in a new browser window. Reload the page to access the tool again. 

 
 
 

Quantitative Research Designs

Evaluate quantitative research questions and hypotheses in assigned journal articles in your discipline and consider the alignment of theory, problem, purpose, research questions and hypotheses, and design. 

Global Business Report

how you will evaluate the challenges and opportunities associated with doing business globally, and how you will demonstrate professionalism in cross-cultural situations.    

Critically examine your perceptions of the differences between doing business in  India and Western Australia, Perth. You can Consider issues such as:

Political climate

Government intervention and support

Industrial setting – impact of industry associations and unions

Impact of culture, inclusive of indigenous culture

Social pressures 

Economic factors.

Should include appropriate supporting tables, charts and exhibits and this is an academic essay where your opinions and insights should be supported with academic literature and 12 peerreviewed references. 3000 words .

error: Content is protected !!