Questions
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

Describe the fraud risks on Amazon:  (Please be industry specific)

Describe the fraud risks on Amazon:  (Please be industry specific)

In: Accounting

For this exercise, you are going to write your code in the FormFill class instead of...

For this exercise, you are going to write your code in the FormFill class instead of the main method. The code is the same as if you were writing in the main method, but now you will be helping to write the class. It has a few instance variables that stores personal information that you often need to fill in various forms, such as online shopping forms.

Read the method comments for more information.

As you implement these methods, notice that you have to store the result of concatenating multiple Strings or Strings and other primitive types. Concatenation produces a new String object and does not change any of the Strings being concatenated.

Pay close attention to where spaces should go in theString, too.


FormFillTester has already been filled out with some test code. Feel free to change the parameters to print your own information. If you don’t live in an apartment, just pass an empty String for the apartment number in setAddress.
Don’t put your real credit card information in your program!

When you run the program as written, it should output

Dog, Karel
123 Cherry Lane
Apt 4B
Card Number: 123456789
Expires: 10/2025

public class FormFill
{
  
private String fName;
private String lName;
private int streetNumber;
private String streetName;
private String aptNumber;
  
// Constructor that sets the first and last name
// streetNumber defaults to 0
// the others default to an empty String
public FormFill(String firstName, String lastName)
{
  
}
  
// Sets streetNumber, streetName, and aptNumber to the given
// values
public void setAddress(int number, String street, String apt)
{
  
}
  
// Returns a string with the name formatted like
// a doctor would write the name on a file
//
// Return string should be formatted
// with the last name, then a comma and space, then the first name.
// For example: LastName, FirstName
public String fullName()
{
  
}
  
// Returns the formatted address
// Formatted like this
//
// StreetNumber StreetName
// Apt AptNumber
//
// You will need to use the escape character \n
// To create a new line in the String
public String streetAddress()
{
  
}
  
// Returns a string with the credit card information
// Formatted like this:
//
// Card Number: Card#
// Expires: expMonth/expYear
//
// Take information as parameters so we don't store sensitive information!
// You will need to use the escape character \n
public String creditCardInfo(int creditCardNumber, int expMonth, int expYear)
{
  
}
  
}

public class FormFillTester
{
public static void main(String[] args)
{
FormFill filler = new FormFill("Karel", "Dog");
filler.setAddress(123, "Cherry Lane", "4B");
  
System.out.println(filler.fullName());
System.out.println(filler.streetAddress());
  
System.out.println(filler.creditCardInfo(123456789, 10, 2025));
  
}
}

In: Computer Science

You have been appointed to the Governor’s Emergency Management Team and have been placed in charge...

You have been appointed to the Governor’s Emergency Management Team and have been placed in charge of creating a Threat Assessment Report. A Category 4 hurricane is moving toward the state, and your city is in the direct line. The storm will make landfall within 72 hours. The Emergency Management Team has been tasked with preparing the city for this event.

A year ago, the city was hit with what has been called the “Thousand Year Flood.” During the flood, the three rivers that surround the city crested, causing major flooding citywide. Loss of life was also high because of the suddenness of the storm. Damage to property was significant, and the projected rainfall expected from this hurricane will be comparable. Fortunately, you have three days to prepare.

Most media and technology equipment was knocked out during the last storm, so information was hard to come by, which added to the loss of life and damage. Some of that has been improved, and it is not expected to be as much of a problem, but, part of your task is to come up with a backup plan for getting information out to the public before, during, and immediately after the storm.

In: Operations Management

Radix sort was proposed for sorting numbers, but if we consider a number as a string...

Radix sort was proposed for sorting numbers, but if we consider a number as a string of digits, the
algorithm can be considered as a string sorting algorithm. In this project you are asked to
implement a radix sort algorithm forsorting strings in ascending order. The input to your algorithm
should be a (multi)set S = [S1, S2, . . . , Sn] of strings each of which is of length m over the English
alphabet [A…Z, a…z]. The output should be the set sorted in ascending lexicographical order.
Notes:
• For simplicity you my limit the number of stings n (or |S| ) to 100 and the number of characters
(digits) m in each string Si to 50.
• You should use the cursor implementation of the linked list data structure to store characters in
your buckets.
• You are allowed to use only character comparisons. Thus, you are not allowed to use the String
library functions.
• You should sort all characters starting at position k, where k is the position of the most
significant digit dk in the string ( e.g., in the string “BirZeit” t is the character in the least
significant digit while B is the character in the most significant digit).
Example: the set {data, structures, and, algorithms, in, C} should be sorted as follows:
a l g o r i t h m
a n d
C
d a t a
i n
s t r u c t u R e s
Notice that in the first pass, the strings and and algorithm would be placed in one bucket since the
first character in both is a. In the second pass, however, the strings will be reordered since l comes
before n in lexicographical order. Same applies for the remaining passes

In: Computer Science

How do perceptual processes influence the initiation (or lack thereof) and maintaining of relationships?

How do perceptual processes influence the initiation (or lack thereof) and maintaining of relationships?

In: Psychology