5.3 minutes.
First, let's calculate the volume of the tank. That will be the area of the base multiplied by it's length. And since it's base is a circle, the area is pi*r^2. So:
V = l*pi*r^2
V = 3.5 * pi * (2.2/2)^2
V = 3.5 * pi * (1.1)^2
V = 3.5 * pi * 1.21
V = 4.235 * pi
V = 13.30464489
So the tank has a volume of about 13.3 ft^3. Now simply divide that volume
by the rate of incoming fluid. So
13.3 / 2.5 = 5.32
Rounding to 2 significant figures gives a time of 5.3 minutes.
Answer: the
Step-by-step explanation:
v= 3.14r^2h
3.14 times 3 times 4 = 113.04
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:
6,300 metres
Step-by-step explanation: