Please send a picture of the figure
Answer: y = -5x + 6
Step-by-step explanation:
First, we need to find the slope, which would be m in the equation. To find m, we can use the formula called "rise over run". Here's the formula: 
So, to use this formula, you pick two points from the line that you're given and solve for m.
Let's use the points (1,1) and (0,6). x1 would be 1, x2 would be 0, y1 would be 1, y2 would be 6


So, the slope is -5
Then, we need to find the y intercept, which would be b in the formula.
We can see that the point where the line meets the y axis is at (0.6), so the y intercept would be 6.
Now let's put everything together:
y = mx+b
y = -5x + 6
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;
}
Answer:
6
Step-by-step explanation:
Its 6 or 4, but leaning toward 6