Answer:
<h2>A. x ≤2 or x>6</h2>
Step-by-step explanation:
2x+6 ≤ 10 or 2x + 8 > 20
⇔ 2x ≤ 4 or 2x > 12
⇔ x ≤ 2 or x > 6
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:
338
Step-by-step explanation:
1×2=2 2+6+10+14+18+22+26+30
3×2=6 +34+36+38+42+46+50=338
5×2=10
7×2=14
9×2=18
11×2=22
13×2=26
15×2=30
17×2=34
19×2=38
21×2=42
23×2=46
25×2=50
I think the answer is substitution property of equality because you are substituting 9 for y as y=9.
It's a six sided polygon. For any polygon the external angles add to 360 degrees. The internal angles shown are the supplements of the external angles. We have
(180 - θ₁) + (180 - θ₂) + ... + (180 - θ₆) = 360
6(180) - 360 = θ₁ + θ₂ + θ₃ + θ₄ + θ₅ + θ₆
720 = θ₁ + θ₂ + θ₃ + θ₄ + θ₅ + θ₆
The six angles add up to 720 degrees, and five of them add to
126+101+135+147+96=605
So y = 720 - 605 = 115
The degree sign is external to y so not part of the answer:
Answer: 115