Classroom management | English homework help

  

For this assignment you need to watch the 3 videos in Module #12, then (in a bulleted fashion), you need to answer for each of the videos:

  1.  Video #1: Define/describe the necessary components of culturally responsive teaching. (5 points)
  2.  Video #2: identify 2 of the strategies and then discuss how each strategy supports culturally responsive teaching and/or management. (5 points)
  3.  Video #3 Identify 2 of the strategies and then discuss how each strategy supports culturally responsive teaching and/or management. (5 points)
 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

Reorder point simulation | Operations Management homework help

For this assignment, refer to your Chapter 3 reading for this unit in the Hartvigsen text, and review Chapter 1 and Section 1 of Chapter 2. In Unit 1, you studied a process simulation involving SimQuick. This assignment provides another exercise using a process simulation.

For this assignment, refer to your Chapter 3 reading for this unit in the Hartvigsen text, and review Chapter 1 and Section 1 of Chapter 2. In Unit 1, you studied a process simulation involving SimQuick. This assignment provides another exercise using a process simulation.

  1. Complete Exercise 13, from Chapter 3, Section 2, on page 49. This exercise features an electronics superstore.
  2. Create a copy of your simulation results. Copy and paste the first five columns in a manner similar to what appears on page 15.

Complete Exercise 13 from Chap. 3, Section 2, on p. 53. This exercise features an electronics superstore. Create a copy of your simulation results. Copy and paste the first five columns in a manner similar to what appears on p. 15.

• Run 30 Simulations and report the overall “Mean Service Level” and “Estimated Total Cost”.
• Provide a: 1) Written Analysis of your results including any detailed calculations,  and 2) your Excel Simulation worksheet.

• I’m attaching a copy of the Excel Template that you can use for this assignment.  Please use this template when submitting your work;

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

Accounting of contingent | Applied Sciences homework help

Read Case Study 13-1, “Accounting for Contingent Assets: The Case of Cardinal Health,” from Chapter 13 in the textbook.

In a 300-word executive summary to the Cardinal Health CEO, address the following:

  1. Explain the potential justification for deducting the expected litigation gain from cost of goods sold, and explain why Cardinal Health chose this alternative rather than reporting it as a nonoperating item.
  2. Explain what the senior Cardinal Health executive meant when he said, “We do not need much to get over the hump, although the preference would be the vitamin case so that we do not steal from Q3.” Include specific clarification of the phrase “not steal from Q3.”
  3. Explain specifically what Cardinal Health did to get into trouble with the SEC.
  4. Justify the timing of the $10 million and $12 million gains, and explain how Cardinal Health’s senior managers defend these decisions.
  5. Cardinal Health received more than $22 million from the litigation settlement. Discuss whether the actions of Cardinal Health senior managers were so wrong that they justified the actions of the SEC. Classify Cardinal Health’s behavior on a scale from 1-10, with 1 being “relatively harmless” and 10 being “downright fraudulent.” Justify your rating.
 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

Assignment 2: case study—virginia mason medical center

 

This assignment, you must read and analyze a Case Study about a major project to transform

safety, quality of care, and the patient experience at the Virginia Mason Medical Center in

Seattle, Washington. Dr. Gary Kaplan, the CEO of Virginia Mason, led the implementation of

the new management system, which was based on the Toyota Production System (TPS) – Lean

model. The new system was named the Virginia Mason Production System (VMPS).

In the paper, we will evaluate and analyze the challenges faced by Virginia Mason, assess the

advantages and disadvantages of the new approach, and describe the impact of VMPS on

patient services and the patient experience at Virginia Mason.

Follow all instructions as it asks you. Do not deviate.

Instructions

Write a 6-to-8-page paper that analyzes the Virginia Mason Case Study. 

Be sure to answer the questions below in your paper:

1. Describe two key challenges Dr. Kaplan faced in implementing VMPS at Virginia Mason.

Name two actions taken to overcome those challenges and implement the new system.

2. Articulate the value proposition guiding the decision to implement VMPS. Describe at

least two ways in which this approach adds value to patient services. Be specific with

your examples and justify your choices.

3. Identify and describe an unintended consequence of this effort – i.e., an outcome that

was not intended or foreseen. Was this consequence positive or negative?

4. In what ways was the new management system designed to improve the patient

experience? How far was VMPS successful in achieving this goal?

Formatting

Your assignment must follow these formatting requirements:

• Typed, double-spaced, using Times New Roman font (size 12), with one-inch margins

on all sides.

• Include a Cover page containing the assignment title, student’s name, professor’s name,

course title, and date.

• Citations and references must follow the formatting instructions found in the JWMI

Writing Standards Guide. Check with your professor for any additional instructions.

Note: The Cover and References pages are not included in the required page length.

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

Management strategic | Management homework help

8 page, 12 font. following the guideline to writting.

Overview 10%

            Identifies the basic problem facing the firm

Clearly identifies underlying strategic factor(s)

            Demonstrates understanding of issues in the case and of strategy

 

Current Conditions and Strategy 15%

States mission as stated or implied in the case where appropriate

Identifies goals and objectives where appropriate

Describes key strategies; gets beyond describing activities to the underlying strategies

Describes current conditions including finances where appropriate

            Clearly relates each of the above to the focus issue(s).

 

Analysis 30%

            Addresses main issue(s)

            Uses appropriate theories and models; correctly applies models

Provides “value-added” explanation or insights that go beyond description

Uses appropriate data and information from the case

Relates information to USF and supports recommendations

            Identifies key environmental factors, competitive conditions, and stakeholders                       

            Identifies key capabilities, competencies, value creating activities, and sources of competitive advantage

 

Diagnosis 20%

            Relates analysis to the conditions in the case

            Clearly identifies key factors and conditions

            Explains significance of analysis results

            Relates analysis to USF

            Provides adequate support for Recommendation/Conclusion

            analysis SW  OF two by two 

 

Recommendations/Conclusion 15%

            Demonstrates that recommendations address basic problem 

            Demonstrates feasibility of recommendations

            Shows that key stakeholder needs are addressed if appropriate

            Identifies obstacles that may be encountered

            Describes expected outcomes

 

Grammar and Structure 10%

            Writing is clear, persuasive, and grammatically correct

Uses appropriate language for a business report

Uses appropriate terms, topics and “strategy language”

            Follows logical sequence; good structure

            Correct spelling, punctuation, and grammar    

            Citations are given in complete standard form where required

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

C programming | Computer Science homework help

C programming!!!!! Expert only
Compound interest.

 

(a) Write a function to compute and return the amount of money, A, that you will have in n years if you invest P dollars now at annual interest rate i. Take n, i, and P as parameters. The formula is

 

A = P(1 + i)n

 

(b) Write a function to compute and return the amount of money, P, that you would need to invest now at annual interest rate i in order to have A dollars in n years. Take n, i, and A as parameters. The formula is:

P =A / (1 + i)n

 

(c) Write a function that will read and validate the inputs for this program. Using call by value/address, return an enumerated constant for the choice of formulas, a number of years, an interest rate, and an amount of money, in dollars. All three numbers must be greater than 0.0.

 

(d) Write a main program that will call the input routine to gather the data. Then, depending on the user’s choice, it should call the appropriate calculation function and print the results of thecalculation.

 

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

Human services values resources | Psychology homework help

Human Services Values

Resources

Reflect on the human services values described in this unit’s reading in An Introduction to Human Services, addressing the following:

  • Which human services value is the most difficult for you to practice? Include an example of a situation that encompasses that value and why it would be difficult for you to use it.
  • Which human services value is the most important to you and why?
  • How might your understanding of the values that guide practice help you determine your future professional development needs?
 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

1) eileen is a hard-working college sophomore. one tuesday, she

1) Eileen is a hard-working college sophomore. One Tuesday, she decides to work nonstop until she has answered 250 practice problems for her physics course. She starts work at 8:00 AM and uses a table to keep track of her progress throughout the day. She notices that as she gets tired, it takes her longer to solve each problem.

Time

Total Problems Answered

8:00 AM

0

9:00 AM

100

10:00 AM

175

11:00 AM

225

Noon

250

Use the table to answer the following questions.

The marginal, or additional, gain from Eileen’s second hour of work, from 9:00 AM to 10:00 AM, is

[removed]

problems.

The marginal gain from Eileen’s fourth hour of work, from 11:00 AM to noon, is

[removed]

problems.

Later, the teaching assistant in Eileen’s physics course gives her some advice. “Based on past experience,” the teaching assistant says, “working on 87.5 problems raises a student’s exam score by about the same amount as reading the textbook for 1 hour.” For simplicity, assume students always cover the same number of pages during each hour they spend reading.

Given this information, in order to use her 4 hours of study time to get the best exam score possible, how many hours should she have spent working on problems, and how many should she have spent reading?

[removed]0 hours working on problems, 4 hours reading

[removed]1 hour working on problems, 3 hours reading

[removed]2 hours working on problems, 2 hours reading

[removed]4 hours working on problems, 0 hours reading

 

 

2) Juanita is deciding whether to buy a skirt that she wants, as well as where to buy it. Three stores carry the same skirt, but it is more convenient for Juanita to get to some stores than others. For example, she can go to her local store, located 15 minutes away from where she works, and pay a marked-up price of $102 for the skirt:

  

Store

Travel Time Each Way

Price of a Skirt

(Minutes)

(Dollars per skirt)

Local Department Store

15

102

Across Town

30

85

Neighboring City

60

76

Juanita makes $42 an hour at work. She has to take time off work to purchase her skirt, so each hour away from work costs her $42 in lost income. Assume that returning to work takes Juanita the same amount of time as getting to a store and that it takes her 30 minutes to shop. As you answer the following questions, ignore the cost of gasoline and depreciation of her car when traveling.

Complete the following table by computing the opportunity cost of Juanita’s time and the total cost of shopping at each location.

Store

Opportunity Cost of Time

Price of a Skirt

Total Cost

(Dollars)

(Dollars per skirt)

(Dollars)

Local Department Store

[removed]

102

[removed]

Across Town

[removed]

85

[removed]

Neighboring City

[removed]

76

[removed]

Assume that Juanita takes opportunity costs and the price of the skirt into consideration when she shops. Juanita will minimize the cost of the skirt if she buys it from the   .

 

 

3) The Social Security system provides income for people over age 65. If a recipient of Social Security decides to work and earn some income, the amount he receives in Social Security benefits is typically reduced.

The provision of Social Security gives people the incentive to save ________   while working. Moreover, the reduction in benefits associated with higher earnings gives people the incentive to __________   past age 65.

4) A 1996 bill reforming the federal government’s antipoverty programs limited many welfare recipients to only 2 years of benefits.

This change gives people the incentive to find a job ______   quickly than if welfare benefits lasted forever.

The loss of benefits after 2 years will result in the distribution of income becoming _______   equal. In addition, the economy will be __________   efficient because of the change in working incentives.

 

 

5) Explain whether each of the following government activities is motivated by a concern about equality or a concern about efficiency.

Activity

Equality

Efficiency

Regulating cable TV prices

[removed]

[removed]

 

Providing some poor people with vouchers that can be used to buy food

[removed]

[removed]

 

Prohibiting smoking in public places

[removed]

[removed]

 

Breaking up Standard Oil (which once owned 90% of all oil refineries) into several smaller companies

[removed]

[removed]

 

Imposing higher personal income tax rates on people with higher incomes

[removed]

[removed]

 

Instituting laws against driving while intoxicated

[removed]

[removed]

 

6) Which of the following statements support the reality that your standard of living is different from that of your parents or grandparents when they were your age? Check all that apply.

[removed]Many families have at least two cars per household, whereas having a vehicle was a luxury in the early 20th century.

[removed]A cutting-edge television comes with HD, 3D, and SmartTV technology, while your grandparents likely enjoyed a black-and-white television in the early years.

[removed]In the United States, the average person’s life expectancy was roughly 78 years old in 2010, but only 70 years old in 1960.

True or False: Labor unions are the primary reason the standard of living in the United States has changed over time.

[removed]True

[removed]False

 

7) During the Revolutionary War, the American colonies could not raise enough tax revenue to fully fund the war effort; to make up the difference, the colonies decided to print more money. Printing money to cover expenditures is sometimes referred to as an inflation tax.

Who is being taxed when more money is printed?

[removed]Banks only

[removed]Families of soldiers in active duty

[removed]Anyone who is holding money

 

 

 

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

Ford company strategic management case analysis part 2

 

Complete the following:

 – Develop vision and mission statements for the organization.

-Recommend specific strategies and long-term objectives. Show how much your recommendations will cost. Clearly itemize these costs for each projected year. Compare your recommendations to actual strategies planned by the company.

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"

Counseling theory- theoretical orientation development plan paper

 

I need this paper back by Wednesday January 24, 2018 at 10am, with a minimum of 7 scholarly references.

Behavior Therapy or Cognitive Behavior therapy  

  

Required Assignments (RAs) are substantive assignments intended to measure student performance against selected course objectives and/or program outcomes within a course. RAs are completed by all students across all Argosy University campuses and delivery formats without exception. 

Each RA contributes to a significant portion of the overall course grade and is assessed by faculty using the grading criteria designed for that assignment. These are individual assignments and students earn individual grades. Required Assignment: Theoretical Orientation Development Plan Paper 300 pts

Description of RA: From what you have learned in this course, select a theoretical perspective that interests you the most. In this assignment, you will conduct a literature search on that theoretical approach and develop a personalized plan for your continued development.

Theoretical Orientation Development Plan Paper Review the literature and construct a paper presenting and supporting your personal counseling theoretical preference (choosing from the major theories studied in this course). You should conduct a computerized literature search on the particular theoretical approach that feels like the best fit. Remember to select a theory that aligns with your worldview and your perspective of the best therapeutic relationship. References should be from empirical/scholarly works that support and further define the position. You should include the following in your paper:

• Summarize the fundamental elements of your theory of choice, including definitions of important terms, personality development, and major historical figures associated with the theory.

• Explain how your personal worldview (e.g. core beliefs about others and the world) connects to the theory of choice. • Explain how the therapeutic relationship aligns with your interpersonal style.

• Discuss how your theory of choice addresses the multicultural nature of our diverse society. 

• Present support for the effectiveness of your chosen theoretical approach by examining and analyzing the existing efficacy-based research. Include findings across age groups, gender, and/or multicultural groups. 

• Discuss limitations of your chosen therapeutic approach, including any clients or presenting problems for which it may not be appropriate. Support your ideas with findings from existing research on the approach.

• Identify the ethical standards from the American Counseling Association’s Code of Ethics (2014) that apply to the use of an approach determined to be unsuitable for a particular group or presenting problem. Discuss the potential harm that could be caused by applying an unsuitable approach. Spring 1 – 2018 

• Provide an example of how you would apply a minimum of two specific theoretical techniques to a fictitious client’s need. 

• Provide a plan for how you will continue to develop your knowledge and skills related to that theory.

Your final deliverable will be a Word document, approximately 8-10 pages in length, utilizing a minimum of 7 scholarly references. Your paper should be written in a clear, concise, and organized manner; demonstrate ethical scholarship in accurate representation and attribution of sources; and display accurate spelling, grammar, punctuation, and APA format.

  

CACREP Standards: 2.F.5.a, 5.C.1.a, 5.C.1.b, 2.F.5.g, 2.F.5.h, 2.F.5.j, 5.C.3.b, 2.F.5.n, 2.F.2.c, 

5.C.2.c, 2.F.1.i, 5.C.2.l 

Theoretical Summary:   Summarize the fundamental elements of your theory of choice, including   definitions of important terms, personality development, and major historical   figures associated with the theory. 

Summary clearly states all critical elements of the theory of choice.   All relevant technical terms are defined, theoretical understanding of   personality development is described, and the importance of each historical   figure is clearly and accurately stated. /40   pts. 

 

Personal Worldview: Explain how your personal worldview connects   to the theory of choice. 

Correlation between the   student’s worldview and the theory of choice is clearly stated. The effect of   the worldview towards the use of the theory is appropriate. /20   pts. 

 

Interpersonal Style: Explain how the   therapeutic relationship described in your theory of choice aligns with your   interpersonal style. 

Correlation   between important aspects of the therapeutic relationship and the student’s   interpersonal style is clearly stated. How the student’s interpersonal style   would be appropriate or be a challenge is clearly stated. /20   pts. 

 

Cultural and 

Developmental Considerations: Discuss how your   theory of choice addresses the multicultural nature of our diverse society   and individual developmental needs. 

The effect of the theory   towards a variety of clients is accurate and clearly stated. /38   pts. 

 

Theoretical Strengths: Present   research findings in support of the effectiveness of your chosen theoretical   approach. 

Findings   are presented of at least one peer-reviewed, efficacy study on the chosen   theoretical approach. /30   pts. 

 

Theoretical Limitations: Present   research findings related to the limitations of your chosen theoretical   approach. 

Findings   are presented of at least one peer-reviewed study examining the limitations   of the chosen approach. /30   pts. 

 

Ethical Considerations: Identify at   least two ethical standards from the ACA Code of Ethics that address the   inappropriate use of an approach or technique. Discuss specific, potential   harmful effects of doing so. 

At   least two relevant ethical standards are identified, defined, and applied to   the potential misapplication of a technique or approach. At least two examples of potential harmful   effects are identified. /30   pts. 

 

Technique Application: Provide an   example of how you would apply a minimum of two 

specifically theoretical   techniques to a fictitious client’s need. 

The   description of implementation correctly aligns with each theory. Specific   needs of the client are addressed, and the description of how each theory   addresses the specific needs is clear and accurate. /54   pts. 

 

Plan for Development:   Describe how you will continue to develop your knowledge and skills related   to the selected theory. 

The   plan includes details and specific resources that will be accessed and   utilized to increase and enhance knowledge and skills related to the theory   of choice. /10   pts. 

 

Academic Writing 

Write in a clear, concise, and organized manner; demonstrate ethical   scholarship in accurate representation and attribution of sources (i.e. APA);   and display accurate spelling, grammar, and punctuation. 

Written   in a clear, concise, and organized manner; demonstrated ethical scholarship   in appropriate and accurate representation and attribution of sources; and   displayed accurate spelling, grammar, and punctuation. Use of scholarly   sources aligns with specified assignment requirements. /28   pts. 

 

Total /300   pts 

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"