Please complete the (Capay Valley Naturals – CVN) (opens in a new window/ wait to load) simulation exercise: http://www.bu.edu/disted/av/html_swf_previews/MEDIA_OBJECTS/MET/MS_M/ad614/msm_ad614_simulation/index.html
The simulation itself is not a graded exercise so please feel free to run through it several times.
In response to the events that have taken place at CVN, the senior management of the company has hired you as an external crisis management – business continuity consultant to assist the CVN Crisis Management Team going forward. In this capacity, you have been asked to prepare a 1500 word report that covers the following areas:
The lessons that you and the company have learned from the simulation exercise. Describe the thinking or reasoning that went into management’s decisions for addressing each of the crisis events
Areas where you might have responded differently. Please indicate how and why. Also, describe other aspects of a response/management plan not included in the simulation that you would have implemented.
During the simulation exercise, CVN was confronted with two significant events; the first involving an occurrence of violence in the workplace, and the second a heat wave. Perform a mini – Hazards and Vulnerability Analysis (HVA) to identify the other potential threats confronting CVN. Make sure that you include an assessment of the probability and impacts associated with each threat.
Now that you have identified the potential threats and their associated impacts, take this a step further and identify some steps that CVN can take to mitigate the threat of a significant event. Specifically, what are the controls, agreements and enhancements that CVN should consider implementing? Make sure to balance your recommendations with some cost/benefit analyses.
Your recommendations to CVN’s Senior Management going forward. What type of organization, processes and plans should be implemented to allow CVN to better respond to and recover from future incidents?
Please use some key content from PPT
Management Question
The Assignment must be submitted on Blackboard (WORD format only) via allocated folder.
Assignments submitted through email will not be accepted.
Students are advised to make their work clear and well presented, marks may be reduced for poor presentation. This includes filling your information on the cover page.
Students must mention question number clearly in their answer.
Late submission will NOT be accepted.
Avoid plagiarism, the work should be in your own words, copying from students or other resources without proper referencing will result in ZERO marks. No exceptions.
All answered must be typed using Times New Roman (size 12, double-spaced) font. No pictures containing text will be accepted and will be considered plagiarism).
Submissions without this cover page will NOT be accepted.
Learning Outcomes:
Illustrate techniques and skills of correct business research report writing; learn report writing style using an approved style; and, apply the basics of oral communication in a presentation of a project, including, proper speech, organization, use of graphical aids, and effective non-verbal communications.
Analyze effective business letters, memorandums, and case studies.
Assignment Question(s):
Data is the new oil for businesses. Generally, businesses relay on these data to perform better. There are many tools businesses use to collect data such surveys. Surveys are particularly useful because you can quickly get the responses of your audience. In your future workplace, you will have many opportunities to create, use and participate in surveys. Your task for this assignment is to assess your ability and knowledge in creating a survey.
Choose the reason and audience for your survey carefully.
Develop your survey.
Note: Use MS Words only to develop your survey
Answers
flow of control with loops and conditional statements, and arrays
Management Assignment Help C source file name: Shopping2.cpp
File name must be Shopping2.cpp
The goal of this assignment is to solve problems that involve flow of control with loops and conditional statements, and arrays. We would like to design an online menu-driven application that allows users to order one or more items from each category of Grocery products from the Panther Store.
There are three categories of Grocery products: Fruits, Vegetables and Beverages. The following lists each item within a category of Grocery products, along with its price.
Panther Fruits
Fuji Apples (3 lb) $4.27
Watermelon (each) $7.88
Strawberries (16 oz) $2.42
Panther Vegetables
Red Cabbage (each) $2.97
Zucchini (each) $0.81
Beets (1 lb) $2.44
Panther Beverages
Apple Juice (64 fl oz) $2.88
Orange Juice (64 fl oz) $5.54
Coconut Water (33.8 fl oz) $3.47
Initially, the program will prompt the user for a total budget. If the user ever exceeds that budget while ordering Grocery items, an error message will display and the item will not be added to the order. That way the program will make sure that the user stays within budget.
The user may order more than one item from each category.
Panther Vegetables are shipped at a flat rate of $2 regardless of the number of items, Panther Beverages similarly are shipped at $5.50 and Panther Fruits at $3.50. Shipping costs are considered outside the user’s budget. The program will keep track of which products have been ordered, how many have been ordered, which category they have been ordered from, how much the user has spent, and the user’s balance.
After ordering is complete, the program will print out an overall invoice. No invoice prints if the customer orders nothing.
Your program’s output must match the output below as exactly as possible.
Sample Interaction: (user inputs are in bold blue fonts)
Welcome to Panther Grocery Store
Please enter shopping budget ($): 20.00
================================================================
Panther Fruits
—————-
1 Fuji Apples (3 lb) ($4.27)
2 Watermelon (each) ($7.88)
3 Strawberries (16 oz) ($2.42)
Please select your fruit (1-3, 0 to cancel): 2
Please enter quantity (0 to skip): 1
Added to shopping cart: Watermelon [1] ($7.88)
Balance : $12.12Continue shopping in this category? (Y/N): Y
Please select your fruit (1-3, 0 to cancel): 3 Please enter quantity (0 to skip): 2 Added to shopping cart: Strawberries [2] ($4.84) Balance : $7.28Continue shopping in this category? (Y/N): N
Panther Vegetables
——————-
1 Red Cabbage (each) ($2.97)
2 Zucchini (each) ($0.81)3 Beets (1 lb) ($2.44)
Please select your vegetable (1-3, 0 to cancel): 3
Please enter quantity (0 to skip): 10
Order amount exceeds budget — cannot proceed.
Balance : $7.28Continue shopping in this category? (Y/N): Y Please select your vegetable (1-3, 0 to cancel): 2 Please enter quantity (0 to skip): 5Added to shopping cart: Zucchini [5] ($4.05) Balance : $3.23Continue shopping in this category? (Y/N): N Panther Beverages —————- 1 Apple Juice (64 fl oz) ($2.88) 2 Orange Juice (64 fl oz) ($5.54) 3 Coconut Water (33.8 fl oz) ($3.47) Please select your beverage (1-3, 0 to cancel): 0
Balance : $3.23Continue shopping in this category? (Y/N): N=================== Invoice – Panther Home ====================
Item Price Qty Amount
—————————————————————
1 Watermelon 7.88 1 7.882 Strawberries 2.42 2 4.843 Zucchini 0.81 5 4.05
Shipping: 5.50
—————————————————————
Total Amount: 22.27
—————————————————————
Thank you for shopping at Panther Grocery Store!printf formatting instructions:
The “Item” column in the table has a width of 30 characters
The “Price” column has a width of 10 characters
The “Qty” column has a width of 10 characters
The “Amount” column in the table has a width of 10 characters
The item numbering column in the table has a width of 3 characters
For program style refer to Section 2.5 from book/slides and follow the style illustrated in the example programs from the book/slides/lab descriptions. A few important ones are – consistent indentation, aligning statements in a block, consistent placement of curly braces, indent statements in a block, meaningful variable names, no more than 95 characters per line, only one statement per line, etc.
Submissions will be screened for plagiarism and other academically dishonest practices so you MUST do entirely your own work. You may help each other to understand and mathematically grasp the problems, but all submitted work must be unique and original. Please submit your assignment by the due date to the Assignment 2 location in Canvas.
Include the following header at the top of your Shopping2.cpp file
/** Author: Firstname Lastname, email* Course: CSE 1502, Section 04/05/S04 Spring 2022* Project: Shopping2.cpp
*/
Healthcare Information Systems Privacy and Security in KSA
Requirements
Discuss the administrative, technical and physical security controls that protect information systems and organizations.
Describe how you would apply this to the healthcare implementations occurring in Saudi Arabia.
Instructions:
Your paper should be 3 pages in length, not including the title and reference pages.
Utilize headings to organize the content in your work.
Start with introduction should include this phrase (this paper will show, discuss, examine, etc).
Chose 2 security controls of each category (administrative, technical and physical), explain (each one) their uses or benefits and give examples.
You must include a minimum of 4 credible updated (2017-2022) sources.
Formatted per APA 7th edition and Saudi Electronic University standards.(attached file no.1 APA)
Provide support for your work with in-text citations from a minimum of 4 scholarly updated (2017-2022) articles.
Provide full APA references for the sources used on a reference page, along with appropriate in-text citations.
week 1 300 words
Week 1 Topic:
“ETHICS AND OBEDIENCE”
Read the following article describing Milgram’s (1963) famous obedience experiment. — Behavioral Study of Obedience Experiment Behavioral Study of Obedience Experiment – Alternative Formats
this experiment ethical? Why or why not?
As you discuss this experiment from an ethical standpoint apply the following issues identifying which ones were followed and which ones were violated by the procedures of this experiment:
Justification for the study to be done from a theoretical and scientific point of view
Clear evidence that the results will benefit the society
Clear evidence that any risk to the participants is outweighed by the potential benefits
Proper and enforceable informed consent proceduresProtection of the confidentiality of participant information
Protection of the well being of the participants
Allowable use of deception
Proper use of instrumentation and assessment procedures
Proper supervision of researchers
Finally what changes would you make today if you were designing this study?
2. Your initial post (your response to the topic) must contain a citation. It is your ideas supported by research. Please refer to the APA Power Point in the Start Here section of the classroom for information on proper formatting. There will be a deduction of 20 points for failure to cite a source within your initial post and to provide a reference at the end of your initial post.3. Your initial post must be a minimum of 300 words
economics questions in STATA
Please, answer every question in the problem set(attached PS5.docx). When asked to provide an answer in STATA, please do so. All the data is attached. Don’t use R. Please, provide a “.do” document. Need to do with STATA. Lecture slides alls attached.
Public Health GHSP Project due Monday 11:59pm CT
Community Health Advocate: Questions 14-23 47-50 (This is my role for the project and I am responsible for answering these questions from the appendix, which are based on the data — BOTH LINKS ATTACHED HERE)
Punto Alegre is the name of my health post
Marketing Question
Assignment Question: You have been hired by a local company as a marketing manager and you are assigned to write a Marketing Plan for the company. Based on the following Contents and related guidelines, write a brief marketing plan for that company. Introduction, Goals and Objectives
To introduce this section, you should include the Vision and mission statements of the business; an idea of what its goals are for customers, clients, employees and the consumer. (2 Marks)
Environmental Analysis (2 Marks)
Conduct an environmental analysis that looks at and comments on your local area and your network of business contacts, competitors and customers.
Target Market Analysis (2 Marks)
Identify the target market, describing how the company will meet the needs of the consumer better than the competition does. List out the expectations consumers have for the product.
SWOT Analysis – Conduct a Swot Analysis of the business to explain what actually are the strengths and weaknesses that the company has and the threats and opportunities. (2 Marks)
Marketing Mix Analysis (4 P’s Analysis) (2 Marks)
Product or Service- Identify the product or service by what it is, who will buy it, how much they will pay for it and how much it will cost for the company to produce it, why a consumer demand exists for your product, and where your product sits in comparison to similar products/services now available.
Place- Identify the location of your business, why it is located there (strategic, competitive, economic objectives), your expected methods of distribution, and timing objectives.
Promotion – Describe the type of promotional methods you will use to spread the word about your product. Identify techniques such as word of mouth, personal selling, direct marketing, sales promotion etc. television, radio, Social media and newspaper ads.
Price – The prices of your products or services that reflects the overall company strategy. Should be competitive as well as a reflection of the quality, costs and profit margin.
NA – Advanced Software Engineering – PART 1 – Creational Patterns
Hello,
Directions: You can use Java, C , C#, Python to implement this project. For other languages, you need to get my pre-approval first. If you use C , please make sure NO C code or concept is in your programs. You must submit a single zip file (e.g., YourLastName-HW1-part1.zip) to Canvas.
The file should contain the following:
(1) A zip file that has all of the source code that is needed for me to run your solution to the problems. If you use VC , please do not send to me files that are several megabytes containing debug profile information. DO NOT SEND ME EXE file.
(2) A UML diagram that contains your software design. Please explain the advantages of your design and tradeoff.
(3) In your source code to this problem, write down your comments as detailed as possible (this part also counts!). The easier to make me understand, the quicker I can grade.
The following description is purposely vague to give you room to figure out good design. Each person’s design mindset is different. It is prohibited to discuss your design with others. You are welcome to discuss your design with ME.
1. A maze is composed of various kinds of MapSite. For example, Room and Door.
a. There are two kinds of Room (Magic Room and Enchanted Room).
b. There are three kinds of Door (Bomb Door and Glass Door).
c. There are 2*3 different kinds of Maze. Choose (a) suitable creational pattern(s) to implement this part.
2. A Maze could be also configured based on its layout/representation. Client is allowed to input the number of rooms of a square Maze. Two layouts are available in a Maze.
a. The first layout has all 4 doors in each room.
b. The second layout is as follows: For each odd row, each even Room has WEST and EAST doors. For each even row, each odd Room has NORTH and SOUTH doors.
c. Print the layout once it is done.
3. Client can only instantiate one Maze object.
Additionally, for each factory and builder class that you design, introduce a Singleton mechanism to allow only one object to be instantiated.
4. (1), (2), (3) needs to be integrated together. 5. Introduce a main function that executes all of the above features.
NOTE :: Brief instructions attached in below PDF please check
This task is not designed to be onerous. Your posts can be very brief, i.e. 50-100 words. The main Essay
This task is not designed to be onerous. Your posts can be very brief, i.e. 50-100 words. The main areas to focus on in your reflections are: What is the main take away message you have for this week? What is the main point you are still unsure about? What would you like to know more about? These are suggested questions only, you are free to reflect on any element of the course you wish. It is important that you post your reflections weekly as they will guide some of the class discussion and it will be very difficult to complete the entire submission at the end of semester without having made posts weekly. How to submit your journal posts: A personal journal will be set up for you in the assessment folder of Blackboard. This journal will only be visible to you and to the teaching staff in the course.