Answer:
Correct Answer
Step-by-step explanation:
Mark as brainliest now NOW!
Answer:
equation of line
x-2y=8
Step-by-step explanation:
equation of line in slope intercept form
(y-y1)={(y2-y1)/(x2-x1)}(x-x1)
or,(y+3)={(-5+3)/(-2-2)}(x-2)
or,(y+3)=(1/2)(x-2)
or,2y+6=x-2
or,6+2 =x-2y
or,x-2y=8
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:
B and C are correct
Step-by-step explanation:
17/4 = 4.25
4 and 1/4 = 17/4