Answer:
Option (A)
Step-by-step explanation:
It has been given in this question that sign telling path has a 2% grade.
2% grade means a rise of 2 meters for a horizontal change of 100 m (As given in the figure attached).
All the trigonometric ratios for the angle θ between the path and the horizontal are,
Sinθ = 
Cosθ = 
tanθ = 
Since measures of the opposite side and adjacent sides are given
Therefore, tangent ratio will be applied to get the measure of the angle,
tanθ = 
θ = 
Option (A) will be the answer.
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:
1/3
Step-by-step explanation:
Take the part over the whole
3/9
We can simplify
Divide the top and bottom by 3
1/3
Answer:
The percent of increase is 25%
Step-by-step explanation:
Percentage increase = increase in price/original price × 100 = ($250 - $200)/$200 × 100 = $50/$200 × 100 = 25%