Answer:
D
Step-by-step explanation:
90-33=57
57-1=56
56/2=28
28
Write a C program to compute Matrix Multiplication of two matrices. Use one dimensional array to store each matrix, where each row is stored after another. Hence, the size of the array will be a product of number of rows times number of columns of that matrix. Get number of row and column from user and use variable length array to initialize the size of the two matrices as well as the resultant matrix. Check whether the two matrices can be multiplied or not. Write a getMatrix() function to generate the array elements randomly. Write a printMatrix() function to print the 1D array elements in 2D Matrix format. Also, write another function product(), which multiplies the two matrices and stores in the resultant matrix. With SEED 5, the following output is generated.
Sample Output
Enter the rows and columns of Matrix A with space in between: 3 5
Enter the rows and columns of Matrix B with space in between: 5 4
Matrix A:
8 6 4 1 6
2 9 7 7 5
1 3 1 1 2
Matrix B:
9 5 4 5
9 9 8 1
4 4 3 5
2 6 2 1
4 5 2 4
Product AxB:
168 146 106 91
161 186 125 81
50 52 37 22
In conclusion, the answer is 5x1
Please give Brainliest answer thanks! :)
Answer:
C
Step-by-step explanation:
Null hypothesis: hypthesis to test that there is no significant difference between the specific characteristic of a population. Analysts look to reject a null hypothesis
A. the shipping company's average delivery time is different from 3 days. This is an example of alternative hypothesis. Null hypothesis is writtien as a claim
B. This again is an example of alternate hypthesis. The claim that mean is 0.03 is rejected with the results
C. This is a claim
D. This is rejection of a claim that mean is 1 pound
E. This is rejection of claim that average delivery time is 3 days.
Answer:
x = -
, x = 
Step-by-step explanation:
The absolute value function always gives a positive value, however, the expression inside can be positive or negative, that is
- 3x + 16 = 18 or -(- 3x + 16) = 18
Solving
- 3x + 16 = 18 ( subtract 16 from both sides )
- 3x = 2 ( divide both sides by - 3 )
x = - 
or
-(- 3x + 16) = 18
3x - 16 = 18 ( add 16 to both sides )
3x = 34 ( divide both sides by 3 )
x = 
As a check
Substitute these values into the left side of the equation and if equal to the right side then they are the solutions.
| - 3(-
) + 16 | = | 2 + 16 | = | 18 | = 18 ← True
| - 3(
) + 16 | = | - 34 + 16 | = | - 18 | = 18 ← True
Thus x = -
and x =
are the solutions
Answer:
50
Step-by-step explanation:
42/n³∑k²+12/n²∑k+30/n∑1
=42/n³[n(n+1)(2n+1)/6]+12/n²[n(n+1)/2]+30/n [n]
=7n(n+1)(2n+1)/n³+6n(n+1)/n²+30
=7(n+1)(2n+1)/n²+6(n+1)/n+30
=[7(2n²+3n+1)+6(n²+n)+30n²]/n²
=[14n²+21n+7+6n²+6n+30n²]/n²
=[50n²+27n+7]/n²
=[50+27/n+7/n²]
→50 as n→∞
because 1/n,1/n²→0 as n→∞