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:
y = 23
Step-by-step explanation:
The diagonals of a rhombus are perpendicular bisectors of each other, thus
∠1 = 90° and ∠1 = 4y - 2, so equating gives
4y - 2 = 90 ( add 2 to both sides )
4y = 92 ( divide both sides by 4 )
y = 23
Answer:
Step-by-step explanation:
<u>Given functions</u>
- f(x)= -3/4x
- g(x)= -5x
- h(x)= 5/7x
- j(x)= 11/3x
To compare steepness we'll compare absolute values of slopes
The steepness increases as the slope increases
<u>The slopes are </u>
<u>Comparing the fractions</u>
- 3/4 = 21/28, 5/7 = 20/28, so 3/4 > 5/7
And
<u>So the order is </u>
<u>As functions, the order is</u>
Answer:
A
Step-by-step explanation:
check the above attachment to verify the answer.
Answer:
Option 3.
Step-by-step explanation:
In this question we have to draw a graph f(x) = |-x+8|
Its a modified form of a graph f(x) = |-x| which starts from origin, having two perpendicular lines in quadrant 1 and 2.
Then f(x) = |-x| is shifted 8 units right on the x-a xis. therefore the modified form becomes f(x) = |-x+8| as shown in the option number 3.
Option 3 is the correct answer.