Answer:
Step-by-step explanation:
16.
RT=17.885
RS=9.741
Angle T=33°
17
AB=7.077
Angle B= 47.291°
Angle A= 42.709°
19
∠A = 180° - B - C = 1.36944 rad =
A=78.463°
Answer:
-5 1/3 - 3 1/3
Step-by-step explanation
both expressions equal -8 2/3
Answer:
4 to 7 is pretty much 4 divided by 7 which = 4/7 and 7/4 is 1 3/4. which is obviously greater. So they both equal different answers.
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;
}
3/10 because there is true false question which is only 2 option. Than 2 multiple choice which would be 8 8+2=10