Assiment #1

Watch the following video on Netflix:  Fyre – The Greatest Party That Never Happened

There were many risks associated with development of this event.  Identify at least one major risk.  Explain if the risk was properly or improperly assessed.  How was the risk managed?  If you were part of the event management team, how would you have managed the risk?  

There were many missteps during the planning phase of the event.  Identify two major flaws in planning that should have triggered the event management team to make adjustments or cancel the event.  How did the team in place handle the major planning flaws?  How would you handle the same or similar scenario as a member of the event team?

Week 6 Disaster Research Paper

Pick an industry/company to focus on for this assignment.  Based upon the given information you can find on the company and any past issues/breaches the company has gone through, create Crisis Management Plan

  1. Introduction brief background of company and any issues the company has had in the past such as data breaches
  2. Strategies and Management business activities, risk factor activities, reactive risk mitigation strategy, risk management, financial performance (more or less depending upon company)
  3. Risk Analysis political analysis, environmental analysis (more or less depending upon company)
  4. Crisis Management Plan:
    1. Purpose
    2. Committee for crisis management planning
    3. Crisis types
    4. Structure of the Crisis Management Team
    5. Responsibility and control
    6. Implementation Plan
    7. Crisis Management Protocols
    8. Crisis Management Plan Priorities
  5. Conclusion
  6. Divide the work on the plan amongst your group members.

References APA format

Page Count Range should be 20 pages not including:

Title page, Table of Contents and References page

All References are to be in APA format.

Research Paper Assignment 3

Assignment 3: Capstone Research Project
Due Week 10 and worth 410 points

Project Parameters:

You have been selected as the consultant to develop a business plan for Durango Manufacturing Company, which is a start-up, medium-sized public manufacturing company. The CEO has a background in manufacturing and is well versed in supply chain management. However, the CEO has limited experience in financial management and creating value for the various stakeholder groups. Your business plan must include a five (5) year strategy to increase revenues by 10% and a recommendation for creating an organizational structure to comply with SOX mandates for strong corporate governance over the internal controls. Your business plan must also include prescriptions for creating an ethical environment. Your recommendation must be approved by the Board of Directors before the company can begin its operations.

Based on your knowledge of accounting and financial, prepare a ten to twelve (10-12) page report in which you:

As the consultant, create an argument that you will present to the CEO that suggests accounting and financial management knowledge and skills will be essential to the companys success and stability over the next five (5) years. Provide support for your argument.

Suggest to the CEO how the companys stakeholders (investors, lenders, and employees) will use financial statement information and ratio calculations to make key determinations related to the financial condition and operational efficiency of the company. Provide support for your rationale.

Given the strategy to increase revenue during the five (5) year plan period, which will need to be achieved through expansion and capital expenditures, determine which capital budgeting ratio is appropriate for Durango to evaluate its proposals for capital expenditures, such as NPV, IRR, etc. Defend your position.

In order for the company to improve its operational efficiency, recommend which production departments should use process, job order, and activity-based costingall three (3) of which must be implemented within Durango. Defend your choice for each department.

The CEO would like to consider outsourcing his manufacturing operations if labor can be supplied cheaper overseas than in the U.S. Create an argument either for or against outsourcing the manufacturing operation to a foreign country. Your argument should include key points that support your position. The key points should address economic and business management aspects related to outsourcing.

Predict the economic and business environment over the next five (5) years, indicating at least two (2) ways it may impact Durango Manufacturing Companys ability to achieve the desired 10% growth in revenue. Provide support for your prediction.

Formulate a strategy to improve the opportunities for Durango to reach its revenue goals (i.e., increase revenue by 10% within five [5] years). 

Assess the potential for fraud within Durango based on the lack of IT controls, and determine at least two (2) ways Durango will structure its internal IT controls to ensure that such controls are effective in detecting fraudulent transactions. 

Use at least six (6) quality academic resources in this assignment. Note: Wikipedia and other Websites do not qualify as academic resources.

Your assignment must follow these formatting requirements:

Be typed, double spaced, using Times New Roman font (size 12), with one-inch margins on all sides; citations and references must follow APA or school-specific format. Check with your professor for any additional instructions.

Include a cover page containing the title of the assignment, the students name, the professors name, the course title, and the date. The cover page and the reference page are not included in the required assignment page length.

The specific course learning outcomes associated with this assignment are:

Analyze financial reports, prepare analysis, and draw conclusions based on the financial analysis

Calculate and interpret various financial and operating ratios used in business.

Apply activity-based costing and other managerial accounting concepts to various business situations.

Evaluate capital budgeting situations by calculating financial returns and drawing appropriate conclusions.

Evaluate internal controls within an organization and create a risk assessment.

Analyze ethical theories to evaluate a decision-making process to determine compliance with professional codes of ethics.

Evaluate the health of organizations to assess the level of risk in an audit engagement.

Evaluate financial data for potential fraud and prepare an audit approach for detecting fraud.

Assess the risk of financial misstatement in an IT-based environment.

Evaluate financial data for potential fraud and determine the business relationships contributing to the fraudulent reporting.

Use technology and information resources to research issues in accounting management.

Write clearly and concisely about accounting management using proper writing mechanics.

Assignment With Help Of C Programming

#include <stdio.h>

#include <stdlib.h>

#include <stdbool.h>

#define MAX 6 

int itemCount = 0;

void Print(int intArray[]);

int peek(int intArray[]) {

    return intArray[0];

}

bool isEmpty(int intArray[]){

    return itemCount == 0;

}

bool isFull(int intArray[]){

    return itemCount == MAX;

}

int size(){

    return itemCount;

}

void enQueue(int data, int intArray[]){

    if(!isFull(intArray)) {

        intArray[size()] = data;

        itemCount++;

    }

    else

    {

        printf(“Error: The queue is full.n”);

    }

}

int deQueue(int intArray[]){

    int data = -1;

    if(isEmpty(intArray)) {

        printf(“Error: The queue is empty.n”);

    }

    else

    {

        data = intArray[0];

        for(int i = 0; i < MAX-1; i++)

        {

            intArray[i] = intArray[i+1];

        }

        itemCount–;

    }

    

    return data;

    

}

int main() {

    

    int intArray[MAX] = {0,0,0,0,0,0};

    //USE max

    for(int i = 0; i < MAX+1; i++)

    {

        printf(“EnQueue %dn”, i*3);

        enQueue(i*3, intArray);

        Print(intArray);

    }

    for(int i = 0; i < MAX+1; i++)

    {

        int data = deQueue(intArray);

        printf(“DeQueue %dn”, data);

        Print(intArray);

    }

    return (EXIT_SUCCESS);

}

void Print(int intArray[])

{

    printf(“size : %dn”, size());

    printf(“——————————–n”);

    printf(“index : “);

    for(int iter=0; iter<size(); iter++)

    {

        printf(“dt”, iter);

        

    }

    printf(“n—————————n”);

    printf(“queue : “);

    for(int iter= 0; iter < size(); iter++)

    {

        printf(“%dt”, intArray[iter]);

        

    }

    printf(“n————————n”);

}