Answer:
A is the answer
Step-by-step explanation:
because it is equal to the first triangle
Answer:
ok,i know
Step-by-step explanation:
there is no like terms
Answer:
24x^2+112x+120
Step-by-step explanation:
distribute the 2
(6x+10)(4x+12)
foil it
24x^2+112x+120
(1,4)
(4,1)
(2,3)
(3,2)
so there are 4 different combinations that equal 5
6 x 6 = 36 total possible outcomes of the dice
so they have a 4/36 reduces to 1/9 probability of equaling 5
Answer:
// C++ Program to arithmetic operationf on 2 Numbers using Recursion
// Comments are used for explanatory purpose
#include <bits/stdc++.h>
using namespace std;
// add10 recursive function to perform arithmetic operations
int add10(int m, int n)
{
return (m + product(n, 10)); //Result of m + n * 10
return 0;
}
// Main Methods Starts here
int main()
{
int m, n; // 2 Variables m and n declared as integer
cin>>m; // accept input for m
cin>>n; // accept input for n
cout << "Result : "<<add10(m,n); // Print results which is calculated by m + 10 * n
return 0;
}