The location of the point that is 3/4 the distance from
Answer:
no solutions
Step-by-step explanation:
.
Answer:
AD=2
Step-by-step explanation:

Answer:
12.5 sq. units
Step-by-step explanation:
Divide the blue triangle into two smaller triangles.
The length of their common base = 5 units
The height of the <u>yellow</u> triangle = 2 units
The height of the <u>red</u> triangle = 3 units
The area of the yellow triangle
= (5×2)÷2
= 5 sq. units
The area of the red triangle
= (5×3)÷2
= 7.5 sq. units
The total area
= 5+7.5
= 12.5 sq. units
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;
}