Entries by Student

write my assignment 16476

Write a 10 pages paper on leadership theories in nursing. The researcher states that transformational leadership is so called because it presupposes that a transformational leader change, for the better, the working environment around her or him. Specifically, the transformation occurs in the balance of the tension between production and efficiency, the creation and sustenance of trust in the workplace, the management of the process of change and engaging the followers to participate in decision-making. This is because a transformational leader is someone who inspires others, is a visionary who knows how to motivate others and is energetic and radiates these characteristics to his followers. Authentic leadership, on the other hand, seems to be leaning towards the opposite direction as its main focus is the relationship between him and his followers. The authentic leader deliberately develops a closer bond with his followers so he can inspire them to do their jobs better. Evidently, no one leadership theory is superior to others at all times. The main argument against situational theories, for example, is that they are focused on attempting to define relationships between leaders and their followers. Nonetheless, situational leadership theories have an edge over the style leadership theories in that they aspire to adapt themselves to the circumstances at hand. In the field of healthcare particularly, situations are hardly set and fixed. Healthcare leaders deal with varied situations on a daily basis and must be prepared to deal with contingencies at all times.

 

"Not answered?"


Get the Answer

write my assignment 23736

A.    Market Description. List 3 potential global markets for your market development strategy. Describe the total market of the 3 potential global markets. Use graphs, charts for visual presentation. Provide the sources of information. (3 marks)

A.    Selected Global Market. Select 1 global market for market development strategy. Justify your answer why you have chosen this global market over the 2 other global markets. List the main reasons why you have not chosen the 2 other global markets. (2 marks)

A.    Trends and Developments. Analyse trends and developments of the selected global markets using PESTEL Analysis for potential impact on the business. (12 marks)

A.    Quality Standards. Upon implementation of this market development strategy, explain how you can ensure that continued quality of products and services are met to existing customers in Australia and the global market. Research which national standards body is responsible for the chosen global market and identify other organisational requirements. (2 marks) 

A.    Key Competitors. Analyse the key competitors on the global market. Have a detailed comparison of the marketing mix – products, place, price and promotion of two major competitors.Use a table to plot and interpret data for visual presentation (features, prices, and others).

(8 marks)

A.    Resource Requirements. Estimate and explain 3 required resources for changes in operation and implementation of market development strategy.

A.    Communication to Key Stakeholders. Draft a formal business email to your key stakeholders communicating the viability of making changes to current operations and implementation of market development strategy. (2 marks)

A.    Over Performing and Underperforming Products: Visit Westfield Sydney Central Plaza and conduct a qualitative research. Identify one over-performing product and one under-performing product. Explain why it is necessary to identify these over-performing and under-performing products. (2 marks)

 

"Not answered?"


Get the Answer

write my assignment 12221

Annotated Bibliography

Each week, view the video lectures under Learning Activities to learn about the parts of the research paper. This week, you will learn about the Annotated Bibliography.

Purpose

The purpose of this assignment is to prepare you for the dissertation process by creating an annotated bibliography. One of the core competencies necessary to succeed in a doctoral program is the ability to identify and use other research that pertains to your own. You will need the ability to identifysimilar research, read the papers, and assimilate prior work into your own research. An annotated bibliography helps you develop and hone these research skills.

Description

The topic of your annotated bibliography is your research paper topic. After completing this week’s Learning Activities, develop an annotated bibliography of at least 7 peer-reviewed references and annotations. Each annotation should include three 3 paragraphs: a summary, evaluation, and reflection.

Deliverable

Prepare a Microsoft Word document that includes:

  • Title page
  • Annotated Bibliography

 

"Not answered?"


Get the Answer

write my assignment 18067

Can you please Test and debug the program below using the following specifications? Many thanks!

Provide a list of valid entries and the correct results for each set of entries. Then, make sure that the results are correct when you test with these entries.

Provide a list of invalid entries. These should include entries that test the limits of the allowable values. Then, handle the invalid integers (such as negative integers and unreasonably large integers). In addition, make sure the user can’t enter data that doesn’t make sense (such as a player having more hits than at bats).

Don’t attempt to handle invalid entries that cause exceptions, such as the user entering a string like “x” for an integer value. You can do that after you read chapter 8.

Tip: whenever needed please provide screenshots of your debugging. Thorough Test Plan also would be a BIG plus.

def display_menu():

  print(“+”*50)

  print(” ttBaseball Team Manager”)

  print(“MENU OPTIONS”)

  print(“1 – Calculate batting average.”)

  print(“2 – Exit program.”)

  print(“+”*50)

def convertBat():

  print(“Calculate batting average.”)

  num_at_bats = int(input(“Enter official number of at bats: “))

  num_hits = int(input(“Enter number of hits: “))

  average = num_hits/num_at_bats

  print(“Batting average:”, round(average,3))

def main():

  while True:

    display_menu()

    rk = int(input(“Menu Option : “))

    if (rk == 1):

      convertBat()

    elif(rk == 2):

      break

    else:

      print(“Not a valid option. Please try again.”)

  print(“Bye!”)

main()

 

"Not answered?"


Get the Answer