Mergers & Acquisitions

Objective: Analyze business mergers and acquisition strategy processes     

Introduction: There are many strategies to expand your business and enhance your competitive position in the market. Research a company that has expanded its products and services and examine strategies they used to increase their presence in a national or global market. Once you have found a good case study, how did they conduct the merger strategy or the acquisition strategy? What steps did they use to leverage their success? Purchasing a business can be treacherous unless due diligence is established and executed. Therefore, having a solid understanding of business acquisition is necessary for successful performance.

For this lesson, you will discover the acquisition process in the context of new business venture creation, examine the pros and cons of franchising, and explore the two types of acquisitions. You will also analyze the external impact of business acquisition at the local, national, and global levels. 

Deliverables     

Minimum 4-page paper with a minimum of 3 resources. APA format is required.     

Activity Details     
     
Research a business that has expanded and increased their presence in the market to identify the strategies they used. Identify the type of acquisition they selected and outline the key strategies that were necessary for successful performance, growth, and sustainability.

Step 1: Read the following questions, and summarize your responses in a 4-page paper (APA formatting required):     
     
(a)  Identify and provide a detailed description of the type of acquisition and the key ideas that appeared to work best for the company?

(b)  When describing the acquisition, be sure to address considerations such as revenue, risk, and, and focus on how it impacted internal operational processes, external challenges, and positioning in the market or industry. 

(c) What was the key strategy the company used and the rationale behind the acquisition? Discuss at least two different steps/approaches that you found the company effectively used. If the case study highlights challenges or failures, what do you assess might improve the positioning of the company? 

Step 2:  Write a paper.  Please review the links provided below, containing the essay rubric and APA formatting guidelines, prior to proceeding:     

https://owl.english.purdue.edu/owl/

References
How to Buy a Business. (n.d.).  Entrepreneur. Retrieved from https://www.entrepreneur.com/article/79638

Allahar, H. (2015). An Overview of Key Issues in Mergers and Acquisitions: A Case of Trinidad and Tobago, International Journal of Economics, Commerce and Management, 3(8), pp. 409-425.

The differences between establishing and abolishing operations

Discuss the differences between establishing and abolishing operations, and explain why you might manipulate these Motivating Operations as part of planned behavior change. Next, explain each type of Differential Reinforcement (DRO/DRI/DRA/DRL), and provide a basic example of how two DR procedures can be used to promote changes in behavior. Finally, discuss how other procedures might be incorporated to support a differential reinforcement approach as part of a behavior reduction component to the plan.
First, define stimulus and stimulus class and provide an example that demonstrates your understanding of the concept. Next, define the concept of stimulus control and how stimulus control is established, differentiating between generalization and discrimination of stimuli. Finally, review Jasmine’s case scenario to examine how you would use response and stimulus prompt fading to transfer stimulus control to a more relevant stimulus, including the application of differential reinforcement, as part of a maintenance plan for a target behavior.
First, discuss the basic concept of Verbal Behavior as an operant paradigm. Next, discuss each of the elementary verbal operants, categorizing them according to their properties of point-to-point correspondence, formal similarity, and appropriate reinforcement according to each operant’s specific function. Finally, provide a unique example of each verbal operant to demonstrate your understanding of how each is applied to the development of language.
Discuss the concept of Derived Stimulus Relations as it applies to the development of language and cognition. Explain the similarities and differences of how derived stimulus relations and verbal behavior contribute to the development of an individual’s language and cognition. Finally, identify the three parts of stimulus equivalence, and explain how each part applies to the development of derived stimulus relations in language.

Sample Solution

The post The differences between establishing and abolishing operations appeared first on homework handlers.

Create a back-end API using node.js and the express module

Task: To create a back-end API that supports the following routes:

1st route: api/quiz/list returns a json array with information about the all tests supported by the api. Should return only the quiz info such as id, title, and deception, not the list of quiz questions

2nd route: api/quiz/:quizid returns a single json object with the quiz information whose id equals to `:quizid` parameter in the route. Quiz id must be a field in the json, not the index of the quiz in the internal array storing the quizzes.

3rd route: api/quiz/:quizid/:questionid returns a single json object with data associated with a designated questione (i.e. question with id questionid ). The questions answer should NOT be included in this response. Moreover, the json request should have a meta field with a next_question subfiled that stores the id of the question that follows the current question in the quiz . If questionid is the last question in the quiz, next_question should be set to -1. If questionid is set to the value first then the route should return the data for the first question of the quiz.
{
      “data”: {
            “id” : 100,
            “question_type” : “multiple_choice”,
            “question” : “What is 1+1 equals to?”,
            “answer_options” : [“1″,”2″,”3″,”4”],
      },
      “meta” : {
            “next_question”: 101
}
}

4th route: api/check_answer/:quizid/:questionid/:answer : the route checks the :answer parameter against the correct answer of the question with id questionid and respond the results in a json object that include the following fields: correct is set to true if the question was answered correctly, false otherwise; feedback includes the feedback message to display to the user, this might be a short explanation about what is the correct answer, if the question as answer incorrectly, or an encouraging message if the question was answered incorrectly. Note that the parameter /:answer might encode different information about the answer depending on what type of question is answered. For example, in a multiple-choice question the :answer parameter might store the index of the correct answer option while in a text response question the :answer parameter might store the actual user text response. It is up to you, as the designer of the API to decide how to encode this parameter. A sample json response for this is provided below.
{
    “question_id” : 100,
    “user_answer” : “3”,
    “correct”: false,
    “feedback” : “The correct answer is 1 + 1 equals 2”
}

Create a second version of your front-end SPA

You are expected to create a second version of your SPA application that uses the RESTful API you created above and task advantage of the new features it provides. Make sure to create new files for this second version. Ex. index_milesone2.html and quiz_milestone2.js

1.    The list of quizzes is loaded asynchronously from the new API using the api/quiz/list route and the options are displayed in the SPA for the user to select.

2.    Each question is loaded asynchronously from the new API using the using a separate calls to the api/quiz/:quizid/:questionid route. You SPA application is expected to use the “next_question” field that comes with the response from the API to navigate between questions and recognize when the quiz is completed.

3.    The updated SPA should use the API route api/check_answer/:quizid/:questionid/:answer to evaluate the users answer to each question. Based on the JSON response you application should provide the appropriate feedback and update the score board.

1.    You RESTful API must be implemented using node.js and the express module.

2.    The routes of your application must be defined in their own module and use the express.Router() class.

Decision-making reflection

According to the quote “Whenever you’re making an important decision, first ask if it gets you closer to your goals or farther away. If the answer is closer, pull the trigger. If it’s farther away, make a different choice. Conscious choice making is a critical step in making your dreams a reality.” Jillian Michaels, Write a 1-page critical reflection flowing from the quote. No paragraph title. APA format. At least 2 references should from the textbook

Sample Solution

The post Decision-making reflection appeared first on homework handlers.