Answer:
It is mainly used while doing scientific notation. If two numbers differ by one order of magnitude, one is about ten times larger than the other. If they differ by two orders of magnitude, they differ by a factor of about 100.A quarter is 0.25 dollars so the ratio between 1 dollar and a quarter is 1/0.25(it means the dollar and the quarter which is 0.25 dollars) and that equals =4
Answer:
Slope=2/3
Step-by-step explanation:
slope is rise over run so you do y^2-y^1/x^2-x^1 which in this case would get you 7-1/6-(-3) that gives you 6/9 which simplifies to 2/3
Answer:
30 girls
Step-by-step explanation:
10 x 2= 20
15x2=30
For every 10 boys there are 15 girls. since 20 is just 10 multiplied by 2 you can multiply 15 by 2
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;
}
M=3 is the correct answer