Answer:
I think option A is correct answer
HCF of 8 that will go as much as possible to 33
4*8=32 and denominator is 8
33-32=1 which is the numerator
Answer is :
4 1/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:
∠GJK is 22°
Step-by-step explanation:
Because the shape is a rectangle we know that GH is parallel to JI
This means that because of the alternate angle rule we know that
5x+8 = 7x-16
Then we solve for x
5x+8-5x = 7x-16-5x
8+16=2x-16+16
=
x=16
So this means that ∠HJI is 68°
Because the shape is a rectangle we know that ∠GJI is a right angle
This means that ∠GJK is 90-∠HJI because of the angles on a right angle rule
90-68 =22
∴∠GJK is 22°