Questions
The data in the table below presents the hourly quantity of production for three lines of...

The data in the table below presents the hourly quantity of production for three lines of production processes over the first 4 days in XYZ Company. Answer the questions based on the Excel Output given below. Day Process 1 Process 2 Process 3 1 33 33 28 2 30 35 36 3 28 30 30 4 29 38 34 ANOVA: Single Factor SUMMARY Groups Count Sum Average Variance Process 1 4 120 30 4.66667 Process 2 4 136 34 11.3333 Process 3 4 128 32 13.3333 ANOVA Source of Variation SS df MS F P value Between Groups 32 ? ? ? Within Groups 88 ? ? Total 120 11

a. State the null and alternative hypothesis for single factor ANOVA. (1 mark)

b. State the decision rule (α = 0.05).

c. Calculate the test statistic.

d. Make a decision. (2 marks

In: Statistics and Probability

Compute the bits number 15, 26, 49, and 61 of the output L1 and R1 of...

Compute the bits number 15, 26, 49, and 61 of the output L1 and R1 of the first round of DES encryption, assuming that the input plaintext block consists of the sequence F0F0F0F0F0F0F0F0, and the key consists of all zeros. Use the S-Box Below

0000 0001 0010 0011 0100 0101 0110 0111 1000 1001 1010 1011 1100 1101 1110 1111
00 14 4 13 1 2 15 11 8 3 10 6 12 5 9 0 7
01 0 15 7 4 14 2 13 1 10 6 12 11 9 5 3 8
10 4 1 14 8 13 6 2 11 15 12 9 7 3 10 5 0
11 15 12 8 2 4 9 1 7 5 11 3 4 10 0 6 13

In: Computer Science

For the given quarterly sales data, a) calculate seasonal indices for each quarter, b) the year...

For the given quarterly sales data, a) calculate seasonal indices for each quarter, b) the year 4 annual forecast based on a linear regression trend forecasting method, c) the seasonally adjusted trend based quarterly forecasts for that 4th year, d) the year 4 annual forecast based on the Naive forecasting method, and e) the seasonally adjusted Naive based quarterly forecast for that 4th year.

Quarter: Year 1 Year 2 Year 3
1 2 3 7
2 6 10 18
3 2 6 8
4 5 9 15
Total 15 28 48

a) Seasonal indices: Q1   ; Q2   ; Q3  ; Q4  

b) Year 4 forecast, trend based: Year 4  

c) Seasonally adjusted trend forecast, year 4: Year 4 Q1   ; Year 4 Q2   ; Year 4 Q3   ; Year 4 Q5  

d) Year 4 forecast, Naive based: Year 4  

e) Seasonally adjusted Naive forecast, year 4: Year 4 Q1   ; Year 4 Q2   ; Year 4 Q3   ; Year 4 Q5  

In: Accounting

1. What is the formula for the indifference curve associated with U = xy3 = 8?...

1. What is the formula for the indifference curve associated with U = xy3 = 8?

2.Given the utility function U = x 1 3 y, what is the slope of the indifference curve at the point (x, y) = (2, 3)?

3.Question 1 Suppose U = x 3 4 y 1 4 . What is the marginal utility of x? What is the marginal utility of y?

In: Economics

Gatson manufacturing company produces 2 types of tires: Economy tire; Premium tire. The manufacturing time and...

Gatson manufacturing company produces 2 types of tires: Economy tire; Premium tire. The manufacturing time and the profit contribution per tire are given in the following table.

Operation

Manufacturing Time (Hours)

Time Available

Economy tires

Premium tires

Hours

Material Preparation

4/3

1/2

600

Tire Building

4/5

1

650

Curing

1/2

2/4

580

Final Inspection

1/5

1/3

120

Profit/Tire

$12

$10

Answer the following assuming that the company is interested in maximizing the total profit contribution.

Let E = number of economy tires manufactured

      P = number of premium tires manufactured

1. What is the maximum allowable decrease in the profit for economy tires, before the optimal decision changes, rounded to the closest whole number?

2. What is the shadow price for final inspection, rounded to the closest whole number?

In: Statistics and Probability

1. For each of the following, write C++ statements that perform the specified task. Assume that...

1. For each of the following, write C++ statements that perform the specified task. Assume that unsigned integers are stored in four bytes and that the starting address of the built-in array is at location 1002500 in memory.

  1. Declare an unsigned int built-in array values with five elements initialized to the even integers from 2 to 10. Assume that the constant size has been defined as 5.
  2. Declare a pointer vPtr that points to an object of type unsigned int.
  3. Use a for statement to display the elements of built-in array values using array subscript notation.
  4. Write two separate statements that assign the starting address of built-in array values to pointer variable vPtr.
  5. Use a for statement to display the elements of built-in array values using pointer/offset notation.
  6. Use a for statement to display the elements of built-in array values using pointer/offset notation with the built-in array’s name as the pointer.
  7. Use a for statement to display the elements of built-in array values by subscripting the pointer to the built-in array.
  8. Refer to the fifth element of values using array subscript notation, pointer/offset notation with the built-in array name’s as the pointer, pointer subscript notation and pointer/offset notation.
  9. What address is referenced by vPtr + 3? What value is stored at that location?
  10. Assuming that vPtr points to values[4], what address is referenced by vPtr -= 4? What value is stored at that location?

2. Combine the statements in part 1 into one C++ program. Here is a sample output of your program.

Part C: Printing the using array subscript notation:

Elem. Value Addresses

0 2 00AFFC4C

1 4 00AFFC50

2 6 00AFFC54

3 8 00AFFC58

4 10 00AFFC5C

Part E: Printing the array using pointer/offset notation:

Elem. Value Addresses

0 2 00AFFC4C

1 4 00AFFC50

2 6 00AFFC54

3 8 00AFFC58

4 10 00AFFC5C

Part F: Printing the array using pointer/offset notation with the built-in arrays' name as the pointer

Elem. Value Addresses

0 2 00AFFC4C

1 4 00AFFC50

2 6 00AFFC54

3 8 00AFFC58

4 10 00AFFC5C

Part G: Printing the array by subscripting the pointer to the built-in array

Elem. Value Addresses

0 2 00AFFC4C

1 4 00AFFC50

2 6 00AFFC54

3 8 00AFFC58

4 10 00AFFC5C

Part H. Printing the fifth element of values using:

1. Array subscript notation: 10

2. Pointer/offest notation with array name as a pointer: 10

3. Pointer subscript notation: 10

4. Pointer/offset notation: 10

Part I. The address of vPtr + 3 : 00AFFC58

The values storedat vPtr + 3 : 8

Part J. The address of vPtr -= 4 : 00AFFC4C

The values stored at vPtr -= 4 : 2

Press any key to continue . . .

In: Computer Science

On December 31, 2016 Berry Corporation sold some of its product to Flynn Company, accepting a...

On December 31, 2016 Berry Corporation sold some of its product to Flynn Company, accepting a 3%, four-year promissory note having a maturity value of $900,000 (interest payable annually on December 31). Berry Corporation pays 6% for its borrowed funds. Flynn Company, however, pays 8% for its borrowed funds. The product sold is carried on the books of Berry at a manufactured cost of $560,000. Assume Berry uses a perpetual inventory system.

Prepare the journal entries to record the transaction on the books of Berry Corporation at December 31, 2016. (Assume that the effective interest method is used. Use the interest tables below and round to the nearest dollar.)

Make all appropriate entries for 2017 on the books of Berry Corporation.

Make all appropriate entries for 2018 on the books of Berry Corporation.

Table 1

Future Value of 1

Periods 2% 3% 4% 6% 8%
1 1.02000 1.03000 1.04000 1.06000 1.08000
2 1.04040 1.06090 1.08160 1.19102 1.25971
3 1.06121 1.09273 1.12486 1.19102 1.25971
4 1.08243 1.12551 1.16986 1.26248 1.36049
5 1.10408 1.15927 1.21665 1.33823 1.46933

Table 2

Present Value of 1

Periods 2% 3% 4% 6% 8%
1 0.98039 0.97087 0.96154 0.94340 0.92593
2 0.96117 0.94260 0.92456 0.89000 0.85734
3 0.94232 0.91514 0.88900 0.83962 0.79383
4 0.92385 0.88849 0.85480 0.79209 0.73503
5 0.90573 0.86261 0.82193 0.74726 0.68058

Table 3

Future Value of Ordinary Annuity of 1

Periodic Rents 2% 3% 4% 6% 8%
1 1.00000 1.00000 1.00000 1.00000 1.00000
2 2.02000 2.03000 2.04000 2.06000 2.08000
3 3.06040 3.09090 3.12160 3.18360 3.24640
4 4.12161 4.18363 4.24646 4.37462 4.50611
5 5.20404 5.30914 5.41632 5.63709 5.86660

Table 4

Present Value of Ordinary Annuity of 1

Periodic Rents 2% 3% 4% 6% 8%
1 0.98039 0.97087 0.96154 0.94340 0.92593
2 1.94156 1.91347 1.88609 1.83339 1.78326
3 2.88388 2.82861 2.77509 2.67301 2.57710
4 3.80773 3.71710 3.62990 3.46511 3.31213
5 4.71346 4.57971 4.45182 4.21236 3.99271

In: Finance

For each of the following strong base solutions, determine [OH−],[H3O+], pH, and pOH. 1. 6.77×10−3 M...

For each of the following strong base solutions, determine [OH−],[H3O+], pH, and pOH.

1. 6.77×10−3 M LiOH,

2. 0.0412 M Ba(OH)2

3. 5.9×104 M KOH

4. 3.0×104 M Ca(OH)2

In: Chemistry

1) a) From the set {-8, -2/3, 5i, √(-9), √2, 0, 3+3i, -2.35, 7} i) List...

1) a) From the set {-8, -2/3, 5i, √(-9), √2, 0, 3+3i, -2.35, 7}

i) List the set of          Natural Numbers

ii) List the set of          Integers

iii) List of the set of    Rational Numbers

vi) List the set of         Real Numbers                                               

b) i) -30 ÷ -6 - (-12 + 8) – 4 x 3 =                           ii) 10(-2) - (-6)4

                          (-10) – 6(-3) =       (4, 4 marks)

2) a) 12/5 x 2 1/7 ÷ 14/5 =                                                                          

  1. After winning from a lottery were divided in the ratio 2 : 3 : 5,

If the largest amount received was $150,000.xx

How much was:-         i) The smallest amount =

                                   ii) The Total amount of prize money =         (3, 2 marks)

3) a) i) Calculate the simple interest earned if a deposit of $ 900,000 is

                        left for 12 years at an interest rate of 3% .                           

          ii) Calculate the interest rate for a 12 years investment of $600,000 to gained

                         $180,000 interest.                                                                 

  1.    Solve

                             2(3x – 2 )= 6x - 2    + 1

                                      3             4                           (6 marks )                                                                         

c) Solve the following pairs of simultaneous equations

                      3x + y = 7   and     2x - 2y = 2        

In: Advanced Math

Q3) Ahmed plays a game where he tosses two balanced 4 sided-dice, each with faces labeled...

Q3) Ahmed plays a game where he tosses two balanced 4 sided-dice, each with faces labeled by 1, 2, 3 and 4. He wins 2 points if the sum is 4. He wins 1 point if the sum is greater than 4. He loses k points if the sum is less than 4.

i. Find the probability distribution sum.

ii. Find the value of k which achieves the fairness of game. (i.e. The fairness is achieved if the game is not biased neither to loss or win)

In: Statistics and Probability