Answer:
ty to the points :>
Step-by-step explanation:
tytytytysm
<h3>
Answer:</h3>
6 hours
<h3>
Step-by-step explanation:</h3>
The two hoses together take 1/3 the time (4/12 = 1/3), so the two hoses together are equivalent to 3 of the first hose.
That is, the second hose is equivalent to 2 of the first hose. Two of the first hose could fill the vat in half the time one of them can, so 6 hours.
The second hose alone can fill the vat in 6 hours.
_____
The first hose's rate of doing work is ...
... (1 vat)/(12 hours) = (1/12) vat/hour
If h is the second hose's rate of doing work, then working together their rate is ...
... (1/12 vat/hour) + h = (1/4 vat/hour)
... h = (1/4 - 1/12) vat/hour = (3/12 -1/12) vat/hour = 2/12 vat/hour
... h = 1/6 vat/hour
so will take 6 hours to fill 1 vat.
I believe #1 is a prism and #2 is a cylinder. <span />
Answer:
dd
Step-by-step explanation:
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;
}