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

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) What is “Strategic Workforce Planning”? B) In 5 sentences or less, in your opinion, what...

A) What is “Strategic Workforce Planning”?

B) In 5 sentences or less, in your opinion, what is the most critical aspect of Strategic Workforce Planning?

In: Operations Management

You are going to begin the process of data gathering. There are three types of data...

You are going to begin the process of data gathering. There are three types of data you will be gathering – Administrative, Technical and Physical. For this assignment, you will be gathering your administrative data. This data will be created by you for your fictitious company. You may use as many resources as you need in order to develop this data. The Internet, data from real companies, and data you just make up on your own may be used. Areas of data that need to be gathered are as follows:

  • Human Resources
    • Recruitment – steps for hiring new employees
    • Employment – policies and procedures employees must follow
    • Termination – steps for terminating employees
  • Organizational Structure
    • Senior Management – how is the senior management structured
    • Security Program – how is this structured. What are the components and policies and procedures
    • Security Operations – what are the policies and procedures and how is this structured
    • Audit – how are these performed and how often
  • Information Control
    • User Accounts – what is the process for creating and managing them
    • User Error – how is this tracked and what happens in the event of user error
    • Asset Control – how are assets protected, assigned value and monitored
    • Sensitive Information – what sensitive information exists, how is it protected and what are the policies and procedures
  • Business Continuity
    • Contingency Planning – do they have it and how is it managed
    • Incident Response Program – do they have it and how is it managed
  • System Security
    • System Controls – what are they and do they need to be improved
    • Application Security – what is in place and is it effective
    • Configuration Management – what do they have in place, what are the policies and procedures and how often is it updated
    • Third Party Access – who has access to any of the assets and how is it controlled

All of the above information will be documented in the risk assessment. In some cases it will be tested and questions to appropriate personnel will be asked.

In: Computer Science

URGENT QUESTION!!! Please answer this question with detailed explanation. Thank you. A solution is made by...

URGENT QUESTION!!! Please answer this question with detailed explanation. Thank you.

A solution is made by mixing 100mL of 0.1 M HCl with 100 mL of 0.1 M NH3 at 25C (degrees celcius). What is the pH of the final solution? (Kb for NH3 = 1.8 x 10-5)

In: Chemistry

1. Review the biological factors involved in the regulation of hunger. Make sure you discuss what...

1. Review the biological factors involved in the regulation of hunger. Make sure you discuss what areas of the brain may be involved with hunger and what blood chemicals are involved.

2. Review what is known regarding roots of obseity. Distinguish between the set point and the setting point hypotheses.

3. Describe the need for achievement and afflication. Identify some of the characteristics associated with each of these needs. How are these needs often assessed?

In: Psychology

Week 3 Stock Journal This is the first of three stock journal assignments that you will...

Week 3 Stock Journal


This is the first of three stock journal assignments that you will complete during this course. For this assignment, two templates have been provided for your use. In one template, you will enter your chosen companies, the share prices, and the number of shares you will be purchasing given your budget of $25K. The other template is where you will write your rationale/summary. Please download both templates, and complete, save, then upload both templates to Blackboard when submitting your work.

Scenario

Capital markets and the ability to raise funds for corporate uses are essential to the U.S. economic system. For this assignment, imagine that you have $25,000 to invest in U.S. companies. You are buying used stock. The company got the money when it issued the stock originally. You will be buying it from an existing owner.
You are investing, or buying, the stock because you believe the company will make money and pay you a dividend in cash. Each share of stock that you buy entitles you to any dividend declared and a vote at the annual stockholders' meeting.
The stock also allows you the ability to earn your money back by selling the stock. Of course, investing in stocks is risky and there is the possibility that the stock you buy will be worth less when you want your money back. The company is not obligated to give you any of your money back. You will only get your money back if another investor wants to buy your stock.

Instructions

Using the above scenario and the resources listed below, complete the following directions for your Week 3 Stock Journal entry:

Select three US companies that are publicly traded using your knowledge and experience and make sure you are practicing good diversification. Jim Cramer, Money Manager, on CNBC, plays a game at the end of his show called "Am I Diversified." Check out the short clip, Am I Diversified - Mad Money [Video], to get a sense of industry diversification.

Ideas for Sources of Information: There are many ways to find such companies and the stock prices, including the New York Stock Exchange, Google Finance, NASDAQ, andYahoo! Finance.


Describe how you will divide $25,000 across the three companies (e.g. $10,000 in Company 1, $10,000 in Company 2, and $5,000 in Company 3).

You decide the amount you are investing in each company. You do not have to provide any analysis to justify your decisions.


Provide a reason for picking each company.

For example, you might invest in Ford because that company gets a lot of your money and you hear that Ford is doing well, and will continue to do well.


Identify the number of shares you are buying, and the price of the shares you are buying for each company.

Once you decide the companies and the amount for each company, determine how many shares you can buy. For example, if Company 1 is selling for $42.16, then you may buy $10,000/$42.16, or 237.19 shares. But you cannot buy a part of a share, so you decide to buy either 237 or 238. In this example, you buy 237 shares at $42.16 per share, investing $9,991.92. You won’t be able to buy exactly $10,000, or $5,000, or $25,000, but it will be relatively close.


In: Operations Management

Explain what would hypothetically happen to the amount of ATP available to a cell if the...

Explain what would hypothetically happen to the amount of ATP available to a cell if the entire Cori cycle (glucose going to lactate and then back to glucose) were to occur and remain within that single cell? Justify your response by providing specific numbers of ATP generated or used in the different parts of the cycle.

In: Chemistry

Write C code to approximate Sin(x) and Cos(x) function using Taylor’s series. The angle x is...

Write C code to approximate Sin(x) and Cos(x) function using Taylor’s series. The angle x is expressed in radians. Use the first FIVE terms of Taylor’s series to approximate Sine/Cosine function.

a. Compare your Taylor’s series approximation of Sine/Cosine function with the math.h implementation of sin and cos function.

b. Determine tan(x) from Taylor’s series approximation of Sine/Cosine functions, for x = 0, PI/4, PI/2, PI. Use PI = 3.14159.

In: Computer Science

An electron has an initial velocity of (12.0j + 15.0k) km/s and a constant acceleration of...

An electron has an initial velocity of (12.0j + 15.0k) km/s and a constant acceleration of (2.00*10^12 i) m/s^2 in a region in which uniform electric and magentic fields are present. If B=(400*10^-6 i)T, find the electric field

In: Physics

Q1. What is: Quality? Total Quality? Total Quality Management? And Quality Culture? Q2. Explain the role...

Q1. What is:

Quality? Total Quality? Total Quality Management? And Quality Culture?

Q2. Explain the role of the leadership and top management in total quality.

Q3. Explain the role of the customer in total quality.

Q4. Explain the role of the employees in total quality.

Q5. List four benefits of total quality management.

In: Operations Management

In what ways are Latinos, as a voting group, the same as other groups - and...

In what ways are Latinos, as a voting group, the same as other groups - and in what ways are they different?

Sociology

In: Psychology

How can we prioritize Responsibility from Relationships in practicing ethics . Explain with examples

How can we prioritize Responsibility from Relationships in practicing ethics . Explain with examples

In: Operations Management

Why are brands so important and under what circumstances would you use family branding versus individual...

Why are brands so important and under what circumstances would you use family branding versus individual branding? What are the advantages and disadvantages of each?

In: Operations Management

write a comprehensive research on Architectural styles and frameworks that are used in software development, and...

write a comprehensive research on
Architectural styles and frameworks that are used in software development, and complete the following:


From your research, select an architectural style that is used in a real-world system.


Describe the real-world system and the architectural style.


Justify why this architectural style is well-suited for the selected real-world system.


In: Computer Science

In the classification of the types of consumer goods, what are the types of convenience goods?

In the classification of the types of consumer goods, what are the types of convenience goods?

In: Operations Management