Chapter 9, Problem 6 please walk through the steps. My subject is (Organizational Management)
A restaurant wants to forecast its weekly sales. Historical data
(in dollars) for 15 weeks are shown below and can be found on
worksheet C9P6 in the OM6 Data Workbook at OM6 Online. (Note: You
may copy the data from the worksheet to the appropriate Excel
template.)
a. Plot the data and provide insights about the time
series.
b. What is the forecast for week 16, using a two-
period moving average?
c. What is the forecast for week 16, using a three-
period moving average?
d. Compute MSE for the two- and three-period moving
average models and compare your results.
e. Find the best number of periods for the moving
average model based on MSE.
| Time period is in weeks | |
| Time period | Observation |
| 1 | 1623 |
| 2 | 1533 |
| 3 | 1455 |
| 4 | 1386 |
| 5 | 1209 |
| 6 | 1348 |
| 7 | 1581 |
| 8 | 1332 |
| 9 | 1245 |
| 10 | 1521 |
| 11 | 1421 |
| 12 | 1502 |
| 13 | 1656 |
| 14 | 1614 |
| 15 | 1332 |
In: Operations Management
47) In the context of the training needs-assessment model, which of the following statements is true about operations analysis?
Multiple Choice
It requires careful examination of the work to be performed after training.
It defines training needs in terms of the difference between desired performance and actual performance.
It provides information that transcends particular jobs, even divisions, of an organization.
It provides information such as diagnostic ratings of employees by customers.
44) In the context of effective teams, which of the following teams best represents the characteristic of conditions?
Multiple Choice
A team in which members have ready access to resources and information
A team that collectively believes that it can succeed
A team in which leaders promote and share ground rules
A team that has psychological safety granted by leaders
36) In the context of absenteeism, identify a true statement about measures.
Multiple Choice
They include methodologies used to identify the causes of absenteeism.
They refer to formulas.
They focus on specific numbers.
They refer to surveys and interviews with employees and supervisors.
31) Identify a true statement about big data.
Multiple Choice
It is the collection and analysis of the digital history created when people surf the Internet.
It excludes tests and measures of aptitudes, behaviors, and competencies that employers compile about applicants.
It is similar to the traditional approaches to analytics in terms of volume, velocity, and variety.
It rarely provides insights into users who seek to gain competitive advantage in the marketplace.
30) Luke is a manager at a foundry. To improve safety in the workplace, he introduces new behaviors for employees. These new practices forbid employees from being within 20 feet of an active furnace. In the context of organizational safety and health programs, Luke's introduction of new safety behaviors for employees is characteristic of _____.
Multiple Choice
engineering controls
management controls
wellness programs
employee assistance programs
24) The managers at Star Holdings decide to assess the management potential of certain employees in the organization. They gather the employees in a group and ask them to hold a 30-minute discussion about a certain production procedure used by the organization. The managers observe the employees and rate them on their communication skills and problem-solving abilities. In the context of assessment methods, this is an example of a(n) _____.
Multiple Choice
group ideation discussion
situational-judgment test
in-basket test
leaderless group discussion
In: Operations Management
void append(Node list1, Node list2)
If the list1 is {22, 33, 44, 55} and list2 is {66, 77, 88, 99} then append(list1, list2) will change list1 to {22, 33, 44, 55, 66, 77, 88, 99}. (5 Marks: 1mark for each correct step)
int sum(Node list)
If the list is {25, 45, 65, 85} then sum(list) will return 220. (5 Marks: 1mark for each correct step)
L.add(50);
L.add(60);
L.addFirst(10);
L.addLast(100);
L.set(1, 20);
L.remove(1);
L.remove(2);
L.removeFirst();
L.removeLast(); (10 Marks: 1 mark for each correct answer)
L.addFirst(10);
Array and Linked List
In: Computer Science
Please complete it in C++
Part 2: Queue
The following shows a number of program's sample input / output sessions.
Input a string: aibohphobia
aibohphobia is a palindrome
Input a string: level
level is a palindrome
Input a string: desmond
desmond is not a palindrome
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////StackArr.h
#ifndef STACKARR_H
#define STACKARR_H
class StackArr {
private:
int maxTop;
int stackTop;
char *values;
public:
StackArr(int);
~StackArr();
bool isEmpty() const;
bool isFull() const;
char top() const;
void push(const char& x);
char pop();
void displayStack() const;
};
#endif
#pragma once
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////StackArr.cpp
#include "StackArr.h"
#include <string>
#include <iostream>
using namespace std;
StackArr::StackArr(int size) {
maxTop = size;
values = new char[size];
stackTop = -1;
}
StackArr::~StackArr() {
delete[] values;
}
bool StackArr::isEmpty() const {
return stackTop == -1;
}
bool StackArr::isFull() const {
return stackTop == maxTop;
}
void StackArr::push(const char& x) {
if (isFull())
cout << "Error! The stack is
full!" << endl;
else
values[++stackTop] = x;
}
char StackArr::pop() {
if (isEmpty()) {
cout << "Error! The stack is
empty!" << endl;
return -1;
}
else
return values[stackTop--];
}
char StackArr::top() const {
if (isEmpty()) {
cout << "Error! The stack is
empty!" << endl;
return -1;
}
else
return values[stackTop];
}
void StackArr::displayStack() const {
cout << "Top -->";
for (int i = stackTop; i >= 0; i--)
cout << "\t|\t" <<
values[i] << "\t|" << endl;
cout << "\t|---------------|" << endl
<< endl;
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////QueueArr.h
#ifndef QUEUEARR_H
#define QUEUEARR_H
class QueueArr {
private:
int front;
int back;
int counter;
int maxSize;
char* values;
public:
QueueArr(int);
~QueueArr();
bool isEmpty() const;
bool isFull() const;
bool enqueue(char x);
char dequeue();
void displayQueue() const;
};
#endif
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////QueueArr.cpp
#include "QueueArr.h"
#include <string>
#include <iostream>
using namespace std;
QueueArr::QueueArr(int size) {
values = new char[size];
maxSize = size;
front = 0;
back = -1;
counter = 0;
}
QueueArr::~QueueArr() {
delete[] values;
}
bool QueueArr::isEmpty() const {
if (counter)
return false;
else
return true;
}
bool QueueArr::isFull() const {
if (counter < maxSize)
return false;
else
return true;
}
bool QueueArr::enqueue(char x) {
if (isFull()) {
cout << "Error! The queue is
full." << endl;
return false;
}
else {
back = (back + 1) % maxSize;
values[back] = x;
counter++;
return true;
}
}
char QueueArr::dequeue() {
char x = -1;
if (isEmpty()) {
cout << "Error! The queue is
empty." << endl;
return -1;
}
else {
x = values[front];
front = (front + 1) %
maxSize;
counter--;
return x;
}
}
void QueueArr::displayQueue() const {
cout << "Front -->";
for (int i = 0; i < counter; i++) {
if (i == 0)
cout <<
"\t";
else
cout <<
"\t\t";
cout << values[(front + i) %
maxSize];
if (i != counter - 1)
cout <<
endl;
else
cout <<
"\t<--Back" << endl;
}
cout << endl;
}
In: Computer Science
Subject :Business research
Read the extract below and answer the questions that follow.
ChemLee Manufacturing is a chemical manufacturing firm that produces and supplies various chemical substances. ChemLee manufacturing employs 300 employees. However, the labour turnover rate experience by ChemLee manufacturing has escalated substantially ovet the years. This has compromised ChemLee's ability to ensure efficient service delivery to its clients.
As a consultant, you have been assigned to investigate the causes of labour turnover for ChemLee manufacturing. You are also required to develop suitable strategies and resolutions for ChemLee manufacturing.
1.1 develop an appropriate title for the study.
Read, understand and supply Section 1: Introduction to business
research. (3)
1.2 discuss the various steps in the research process that you would undertake. Read, understand and supply Section 1: introduction to business research (14)
1.3 Explain which research paradigm would be the most
appropriate.
Substantiate your answer. Read, understand and supply Section 1:
Introduction to business research. (6)
1.4 Discuss the most suitable research strategies to
be used. Justify your answer. (6)
Additional research is required. Read, understand and supply
Section 3: research
designed
1.5 Provide two questions you include on the research
instrument. (4)
Additional research is required. Read, understand and supply
Section:5 data collection
1.6 Discuss the three possible data collection methods that could be used for the study. (12)
In: Operations Management
1. Describe the impact of internalization in the (BSG Game) simulation?
In: Operations Management
13-14. How would you prioritize and delegate the tasks of the new key decisions-makers in Dubai?
In: Operations Management
In: Operations Management
C++ Question
Create two circular linked lists and find their maximum numbers. Merge the two circular linked lists such that the maximum number of 2nd circular linked list immediately follows the maximum number of the 1st circular linked list.
Input:
12 -> 28 -> 18 -> 25 -> 19-> NULL
5 -> 24 -> 12 -> 6 -> 15-> NULL
Output:
28 -> 24-> 25 -> 15 -> 19 -> 15->5-> 18 -> 25 -> 19->NULL
Note:- Code should work on MS-Visual studio 2017 and provide output along with code
In: Computer Science
In: Operations Management
Apply following to header and footer sections of page:
center text
background color rgb(254,198,179)
padding should be 20px
In: Computer Science
Discuss the four main yogas/spiritual pathways to liberation followed by Hindu believers and provide examples of each when appropriate
In: Psychology
Describe/define/explain
a. The relationship between Java's Iterable and Iterator
interfaces
b. An inner class
c. An anonymous inner class
d. The functionality of an Iterator remove method
In: Computer Science
could you give a detailed explanation and example of each of the following phrases : prepositional, infinitive, gerund, and participle ?
In: Psychology
What one major organizational subsystem needs to be changed in Costco? Justify your choice. How does it compare to a similar successful organization?
Please Help
In: Operations Management