Hello There!
You would have to do work out 2 to the fourth power.
Also, 3 x 4.
The rules of powers are:
If you have to multiply, you add them
If you have to divide, you subtract them
If they are in brackets like this ^^, you multiply them.
Therefore, your answer is
Hope This Helps You!Good Luck :)
- Hannah ❤
Answer:
Correct option is
B
1.x+0.y=7
x=7 can be written as, 1.x+0.y=7 as the coefficient of x is 1 and that of y is 0. Step-by-step explanation:
To solve this you need to know Pythagorean theorem.
First, EG is 24, so the halfway points are 12. Knowing Pythagorean triples, you can use 5,12,13 and 12,16,20.
DF = 5+16
DF = 21
If you don't know Pythagorean triples, I have worked it out on the image attached.
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;
}