In each box there are 4 Apple and 5 blueberry... so,1.12 2.10 3.32 4.10
Let
x-------> the first number
y-------> the second number
we know that

equation 1

equation 2
substitute the equation 1 in equation 2
![[-5-y]*y=-90 \\ -5y- y^{2} =-90 \\ y^{2} +5y-90=0](https://tex.z-dn.net/?f=%5B-5-y%5D%2Ay%3D-90%20%5C%5C%20-5y-%20y%5E%7B2%7D%20%3D-90%20%5C%5C%20y%5E%7B2%7D%20%2B5y-90%3D0)
using a graphical tool to resolve the second order equation
see the attached figure
the numbers are-12.3117.311
Answer:
The first digit of a two digit number can be any of digits 1 - 9. It cannot be 0 though. Therefore there are 9 possible digits for the first place.
There are 5 possible digits for the second position. The two digit number has to be odd and therefore the final digit must be 1,3,5,7 or 9
Therefore for each and every one of the nine first digits there are 5 digits that the second can be.
Therefore ANSWER = 9 * 5 = 45 possible permutations.
2. The largest two digit number = 99
Subtract 57 and you get 42
ANSWER = 42
The forty two numbers are 58 ,59, 60, 61......98, 99
Yes, the cost is proportional to the number of water bottles sold. 6 water bottles/$4.00 = 1.5 and 15 water bottles/$10.00 = 1.5.
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! :)