Y = mx + b
M= your slope or rise over run
B = your y-intercept
For example if the rise was 5 and the run is 6, the equation would say
y = 5/6 + b
The / being your fraction bar
The y-intercept is where your line crosses the y-axis
So say that the line crosses the y-axis at 10
y = 5/6 + 10
That about sums it all up!
Answer:
A, B and C
Step-by-step explanation:
A) 3 and 18 = has 3 as factor
B) 8 and 24 = has 3 as factor
C) 12 and 18 = has 3 as factor
D) 1 and 3 = has as factor of 1 and 3
so the answer is A, B and C
Answer:
D
Step-by-step explanation:
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;
}