It takes value from a user and then user the operation of (+,-,*/).
i used c++ programming language to solve this program:
#include<iostream>
using namespace std;
int main() {
int var1, var2;
char operation;
cout << "Enter the first number : ";
cin >> var1;
cout << endl;
cout <<"Enter the operation to be perfomed : ";
cin >> operation;
cout << endl;
cout << "Enter the second nuber : ";
cin >> var2;
cout << endl;
bool right_input = false;
if (operation == '+') {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 + var2);
right_input = true;
}
if (operation == '-') {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 - var2);
right_input = true;
}
if (operation == '*') {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 * var2);
right_input = true;
}
if (operation == '/' && var2 != 0) {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 - var2);
right_input = true;
}
if (operation == '/' && var2 == 0) {
cout << "Error. Division by zero.";
right_input = true;
}
if (!right_input) {
cout << var1 << " " << operation << " " << var2 << " = " << "Error;";
cout << "Invalid Operation!";
}
cout << endl;
system("pause");
return 0;
}
Hi there! :)

Recall that the sum of all angles in a triangle = 180°.
Therefore:
34° + 24° + x° = 180°
Combine like terms and subtract:
58° + x° = 180°
x = 180° - 58°
x = 122°
Answer: Obtuse
Step-by-step explanation:
Acute angles are Between 0 and 90 degrees
Right angles are 90 degrees
Obtuse angles are 90-180 degrees
And straight angles are 180 degrees
Note: Between mean like Ex. between 1-10 it would be 2, 3, 4,... 8, 9
Answer:

Step-by-step explanation:
From the question we are told that:
Sample size 
Mean 
Range 
Generally at 
Value of Control chart constant,

Generally the equation for Lower Control Limit is mathematically given by



The answer is <span>b.3x + 15 = 55 - x
</span>
x - Jill's present age
y - dad's present age
<span>In 5 years, Dad will be three times as old as his daughter Jill will be then:
y + 5 = 3(x + 5)
</span><span>The sum of their present ages is 50:
x + y = 50
We have the system of two equations now:
</span>y + 5 = 3(x + 5)
x + y = 50
Let's rearrange the second equation:
If: x + y = 50
Then: y = 50 - x
Now, substitute y from the second equation (y = 50 - x) into the first one:
y + 5 = 3(x + 5)
50 - x + 5 = 3(x + 5)
50 + 5 - x = 3*x + 3*5
55 - x = 3x + 15
Rearrange it a bit:
3x + 15 = 55 - x
Therefore, the correct choice is b.