Questions
Dave and Buster's in Canada Suggest a brand name that would create a distinctive identity for...

Dave and Buster's in Canada

Suggest a brand name that would create a distinctive identity for the company (or specific product). Analyze cultural and legal factors that could influence packaging of the product.

In: Operations Management

Which of these systems is the most important Justify your answer. - Transaction Processing system -...

Which of these systems is the most important Justify your answer.

- Transaction Processing system

- Enterprise Resource Planning

- Management information system

- Decision Support System

Expert system

In: Operations Management

An S corporation is considered a flow-through business entity that has the advantages of both the...

An S corporation is considered a flow-through business entity that has the advantages of both the corporation and proprietorship. Discuss the general rules that govern S corporations. What are some of the operational rules that effect various code provisions on S corporations? Go to www.irs.gov (Links to an external site.)Links to an external site. and provide a synopsis of the similarities and differences between S corporations and one other form of business.

In: Accounting

Review the following questions and provide substantive responses. Make sure that you provide proper references and...

Review the following questions and provide substantive responses. Make sure that you provide proper references and format the paper in the APA style.

1. When people talk about organizational change, what precisely is being changed and what forces lead to such change?

2. Suppose that you are a top executive of a large organization about to undertake an ambitious restructuring plan that involves massive changes in job responsibilities for most employees. Explain why people might be resistant to such changes and what steps could be taken to overcome this resistance.

In: Operations Management

Paper Co. is a medium-sized manufacturer of sanitary tissue products based in New York. The company...

Paper Co. is a medium-sized manufacturer of sanitary tissue products based in New York. The
company has been in business for over 43 years, mainly producing toilet paper and paper towels
that are sold exclusively through its retail network across the United States. Through the years, it
has been gradually expanding its production capacity and consumer base. However, over the past
month and a half, the company has been faced with an unprecedented and unanticipated increase
in demand, which has cleared out all its storage facilities and exceeded its manufacturing
capabilities. At this time, the demand continues to be high.


The company has an existing storage facility, which can be converted to a new production line.
The new production line would significantly increase the existing manufacturing capabilities.
However, this would require a substantial investment in remodeling of the facility and
purchasing of expensive equipment from a producer in London, UK. To proceed with this
option, it would be also necessary for Paper Co. to obtain a loan from a local bank and hire
additional staff. It is estimated that it will take at least one month for the new production facility
to start producing.


Paper Co. leadership is faced with a dilemma. If they don’t expand the current capacity, they risk
losing the market share to competitors that are more flexible in adapting to higher demand. At
the same time, the expansion is very costly and the long-term demand is uncertain.
You are hired by Paper Co. as a consultant to help make the right business decision and to come
up with an action plan.


Part A

How would you recommend for Paper Co. to proceed? Should it stay with the same production
capacity or increase it as described above? Provide a detailed explanation of the rationale for your recommendation.


Part B

Please describe potential challenges Paper Co. could be facing as a result of the decision made in
Part A:
1) One month from now
2) Three months from now
3) One year from now
State the challenges and explain how you would recommend Paper Co. to address each of those
challenges.

In: Operations Management

answer each question in one paragraph ( 4 sentences ) 1- What is a skills profile...

answer each question in one paragraph ( 4 sentences )

1- What is a skills profile and what is it used for?

2- Describe the purpose of the income statement, the balance sheet, and the statement of cash flows.

3- What is SCORE? What is its role in helping a firm fill out its new venture team?

In: Operations Management

Discuss 2 different behavioral examples regarding corona virus. What happened, and what was the outcome? provide...

Discuss 2 different behavioral examples regarding corona virus. What happened, and what was the outcome?

provide at least one research-based recommendation about corona virus. These recommendations need to be behavioral, actionable suggestions. In other words, the team should know exactly what to do next week in order to improve. These should be specific to this team, taking into account everything you know about them. Furthermore, please use support from research to discuss why and how these recommendations would improve the team. Finally, discuss the risks and limitations for your recommendations

In: Operations Management

The information processing approach to understanding the mind – and how this relates to computers. Whats...

The information processing approach to understanding the mind – and how this relates to computers.

Whats the difference between behavioral and brain (or anatomical) research?

The Sternberg memory scanning task as an example of behavioral research – what three insights did it provide about memory?

In: Psychology

QUESTION 5 Consider the following Die class: class Die { public:    void setValue(int x);// assign...

QUESTION 5

  1. Consider the following Die class:

    class Die {
    public:
       void setValue(int x);// assign x to num
    int getValue(); // return num
    void roll(); // set num with a random number ranging 1-6
    Die();   // constructor
    private:
    int num;
    };

    Which of the following C++ code segment will correctly find that how many times a Die object will be rolled until the value '6' is obtained.

    Die myDie;
    int dieValue, countTil6 = 0;
    myDie.roll();
    dieValue = myDie.getValue();
    while (dieValue != 6) {
    countTil6++;
    myDie.roll();
    dieValue = myDie.getValue();
    }
    cout << countTil6;

    Die myDie;
    int dieValue, countTil6 = 1;
    while (dieValue != 6) {
    myDie.roll();
    dieValue = myDie.getValue();
    countTil6++;
    }
    cout << countTil6;

    Die myDie;
    int dieValue, countTil6 = 1;
    myDie.roll();
    dieValue = myDie.getValue();
    while (dieValue != 6) {
    countTil6++;
    myDie.roll();
    dieValue = myDie.getValue();
    }
    cout << countTil6;

    Die myDie;
    int dieValue, countTil6 = 1;
    while (dieValue != 6) {
    countTil6++;
    myDie.roll();
    dieValue = myDie.getValue();
    }
    cout << countTil6;

3 points   

QUESTION 6

  1. Consider the following statements.

    struct supplierType {
        string name;
        int supplierID;
    };

    struct paintType {
        supplierType supplier;
        string color;
        string paintID;
    };
    paintType paint;

    Which stataement is correct?

    paint.name="Sherwin-Williams";

    paintType.supplyType.name="Sherwin-Williams";

    paint.supplier="Sherwin-Williams";

    paint.supplier.name="Sherwin-Williams";

In: Computer Science

In C programming Declare two 2d arrays n0[MAX_ROW][MAX_COL], n1 [MAX_ROW][MAX_COL]. Then, loop through the 2d array...

In C programming

Declare two 2d arrays n0[MAX_ROW][MAX_COL], n1 [MAX_ROW][MAX_COL].
Then, loop through the 2d array and save the results in n0 and n1:

for (i=0; i<MAX_ROW; i++)
  for (j=0; j<MAX_COL;j++){
       //calculate number of zeros around entry a[i][j]
       n0[i][j] =
       //calculate number of ones around entry a[i][j]
       n1[i][j] =
  }

Set the MAX_ROW and MAX_COL to a small number and display all three 2d arrays on the screen to verify that the calculations are correct. You may still use command-line inputs as in the example program to set the actual size of the array (must be less than or equal to MAX_ROW, MAX_COL.

In: Computer Science

(a) Write code segments to perform the following: (i) declare and create a boolean array flagArray...

(a) Write code segments to perform the following:

(i) declare and create a boolean array flagArray of size 5

(ii) declare and initialize an array amount which contains 39.8, 50 and 45

(iii) declare a Keyboard array of size 3 with name keyboard and initialize it with Keyboard objects using one statement

(b) A incomplete definition of a class Cash is given below: public class Cash { private double value[] = {10.5, 20, 5.5, 7.8}; }

(i) Copy and put it in a new class. Write a method toString() of the class, which does not have any parameters and returns a string containing all the values separated by newlines. When the string is printed, each value should appear on a line in the ascending order of their indexes. Copy the content of the method as the answers to this part.

(ii) Write another class TestCash in a separate file with a method main() to test the class Cash. In main(), create a Cash object cash and print its values by calling toString(). Run the program. Copy the content of the file and the output showing the message as the answers to this part.

(iii) Add a method decreasePercent(int index, double percent) to the Cash class which decreases the element with subscript index of the value array by the percentage percent without returning anything. Also add a method getValue(int index) to return value[index]. Copy the content of the methods as the answers to this part.

(iv) Add another method countBelow(double threshold) to the Cash class which returns the number of values which are less than threshold. Copy the content of the method as the answers to this part.

(v) Add another method minimumIndex() to the Cash class which returns the index of the minimum value in the array. Copy the content of the method as the answers to this part. You can assume there is only one minimum value.

(vi) Add another method trimmedMean() to the Cash class which returns the average value which excludes the (unique) largest value and (unique) smallest value in the calculation. You should use minimumIndex() to get the index of the minimum value. Note that this method should work without any modifications when the number of values, which is at least three, is changed. Copy the content of the method as the answers to this part.

(vii) Perform the tasks listed below in main() of TestCash: * print the second value from the left, decrease it by 10% using the method decreasePercent(), and print the new value; * calling countBelow()to count the number of values less than 15 and then print it; * print the index of the minimum value and the trimmed mean. Run the program. Copy the content of the class and the output as the answers to this part.

In: Computer Science

Thumbs Up Will Be Given For Answer. Chapter Topic: Markets for Foreign Exchange Please find an...

Thumbs Up Will Be Given For Answer.

Chapter Topic: Markets for Foreign Exchange

Please find an INTERNATIONAL BUSINESS article to use. By doing so, YOU NEED to please visit websites such as  Reuters, Bloomberg, Wall Street Journal, etc, and put in the keywords "International Business" and the chapter topic "Markets for Foreign Exchange" on the website. You NEED to choose a relevant and interesting article that was made within the PAST COUPLE MONTHS that has to do with "International Business" and the chapter topic "Markets for Foreign Exchange". ***MUST INCLUDE LINK FOR ARTICLE USED PLEASE***  (2-3 paragraphs please)

Question:

A) Key international business dimension for the article?

B) How this article relates to the chapter topic "Markets for Foreign Exchange"?

C) Why this article got your attention?

In: Operations Management

You are to create a class called Person. You should create the definition of the class...

You are to create a class called Person. You should create the definition of the class Person in a file person.h and the functions for Person in person.cpp. You will also create a main program to be housed in personmain.cpp.

A Person will have attributes of

  • Height (in inches)
  • Weight (in pounds to 2 decimal places)
  • Name (string)
  • Gender (‘m’ or ‘f’)
  • Ethnicity/Race (could be more than one word)
  • Occupation (also more than a single word)

A Person will have the following methods

  • Accessors for all attributes
  • Mutators for all attributes
  • A default constructor that sets all data elements to 0 or blank text as appropriate
  • A fully specified constructor that allows defining values for all attributes
  • A printinfo method that will display all the info for a person in a logical and well formatted way including labels for each of the attribute fields

personmain.cpp should perform the following actions

  • Dynamically allocate an array of 4 Persons
  • Prompt the user for information about each of the four persons and store that information in one of the array elements
  • Print the information for each Person
  • Clean up all allocated space

In: Computer Science

PLEASE ANSWER IN TERMS OF CYBERSECURITY AND OPERATING SYSTEM Explain why for each classification. 2. What...

PLEASE ANSWER IN TERMS OF CYBERSECURITY AND OPERATING SYSTEM

Explain why for each classification.
2. What is the difference between SELinux and VAX VMM in terms of their ability to provide a) Complete Mediation of security sensitive operations, b) complete mediation of all security sensitive operations on system resources and c) how we verify whether complete mediation is provided by the respective reference monitors?

In: Computer Science

One of the main purposes of minimum wage legislation is to protect non-unionized workers in jobs...

One of the main purposes of minimum wage legislation is to protect non-unionized workers in jobs requiring minimal skill levels. A minimum wage creates a "floor" above which employees or their unions may negotiate with the management for higher pay rates. In1970, Ontario's minimum wage was set at $1.50 per hour. On January 1, 2018, the minimum wage rate in Ontario increased to $14 dollars per hour and was promised to rise to $15 dollars per hour thereafter. It is estimated that 10% of the provinces workforce is paid the minimum wage rate.

In early 2018, media outlets reported protestsThat occurred at various Tim Horton's outlets in OntarioOver action by franchise owners to deal with rising labor costs. Union officials noted Employee accounts of losing paidBreaks and having to buy their own uniforms after the new minimum wage rates went into effect. The Ontario Federation of Labour (OFL) Called for a National Day of Action in January 2018, saying that it was mobilizing concerned members of the labour movement, including the "Fight for $15," the Canadian Labour Congress and labour federations across Canada, to protest such actions in response to minimum wage increases.  

Protest against actions taken by Tim Horton's and many of its franchisees were held in over 20 Ontario communities with the support of the Ontario Public Service Employees Union, Labour councils and other action-based worker agencies. Similar protest occurred in British Columbia, Nova Scotia and Saskatchewan.

Over 20 representatives from various labor councils gathered at a Tim Horton's location in Windsor, Ontario to protest. An OFL representative stated that she and other union representatives were there to show the workers that the labour movement and the community where there to support them and make sure they were treated with respect. Another union leader said if there was a union steward present in such a situation, steps would have been taken to resolve employee concerns. Many of the workers felt afraid to raise their concerns with management due to a fear of being fired.

There was no report of how many union organizers might have been at these rallies trying to gain support among the employees to join a union.

As an HR leader at Tim Horton's corporate office, what steps would you suggest to senior management to successfully handle this situation and hopefully avoid the employees joining a union?

In: Operations Management