Answer:
0.2x+5>2
Step-by-step explanation:
0.2 is the same as 2/10;
(2/10)x>2-5
(2/10)x>-3
2x>-30
X>-15( since -15 is lesser than -14,-13,-12 and so on. the sign should be >
Answer : <em>Equation of line is</em> y=Equation of line is y=
x+
Step-by-step explanation:
Theory :
Equation of line is given as y = mx + c.
Where, m is slope and c is y intercepted.
Slope of given line : y =
x+1 is m= 
We know that line : y =
x+1 is parallel to equation of target line.
therefore, slope of target line will be
.
we write equation of target line as y=
x+c
Now, It is given that target line passes through point ( -5,-2)
hence, point ( -5,-2) satisfy the target line's equation.
we get,
y=
x+c
-2=
-5+ c
-5=
+c
c= 
thus, Equation of line is y=Equation of line is y=
x+
Answer:
Integers, Whole Numbers, and Natural Numbers are Rational Numbers
Step-by-step explanation:
Hope it helps :3
Answer: 9$
Step-by-step explanation:
kyle has x dollars. Sean has x+8 dollars. They equal 26. 2x+8=26
2x=18
x=9
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;
}