Answer:
x=37°
y=6
Step-by-step explanation:
(ASSUMING BD is a perpendicular bisector of AC, otherwise answers maybe be wrong)
Consider the triangle ABC:
AB is the same length as BC (marked), meaning ABC is an isosceles triangle.
Since ABC is isosceles, ∠BAC=∠BCA=53
All angles in a triangle add up to 180:
180=∠ABC + ∠BAC + ∠BCA
180= ∠ABC + 53 +53
∠ABC = 180 - 106
∠ABC = 74
Assuming BD bisects ∠ABC perfectly, x is half of ∠ABC.
x=74/2=37
If BD bisects AC perfectly, AD=DC=y=6
The real distance fro the shop to the store is 24 km
<em><u>Solution:</u></em>
Given that, Jakes map shows the distance from the bake stars cafe to the restaurant supply store as 3 centimeter
Scale of the map is 1 centimeter to 8 kilometers
Therefore, scale is:

Let "x" be the real distance from the shop to the store
Then by proportion, we get,

Thus real distance fro the shop to the store is 24 km
Answers:
14 + 18 ÷ 2 x 18 – 7 = 169
- 14 + 9 * 18 - 7
- 14 + 162 - 7
- 169
60 – 9 x 8 ÷ 8 x 6 = 6
- 60 - 72 / 8 * 6
- 60 + -216/4
- 60 - 54
- 6
15 x 10 + 12 ÷ 3 + 9 = 163
- 150 + 12 / 3 + 9
- 150 + 4 + 9
- 163
(10 ÷ 5)3 + 100 – 9 x 11 = 7
- 2 * 3 + 100 - 9 * 11
- 6 + 100 - 99
- 7
8 x 4 + 9 – 9 + 18 = 50
- 32 + 9 - 9 + 18
- 41 - 9 + 18
- 32 + 18
- 50
3 x 8 x 2 – 42 + 5 = 11
- 24 * 2 - 42 + 5
- 48 - 42 + 5
- 11
<em>i hope this helps, good luck :)</em>
Answer:
9+10=90
Step-by-step explanation:
10x9=90
I hope it helps:)
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;
}