Answer:
143.26 sec
Step-by-step explanation:
Density = 4.3 g/l
Volume flow rate = 0.25 l/s
Mass flow rate = density x volume flow rate
= 4.3 x 0.25 = 1.075 g/s
This means 1.075 grams of the gas is released in 1 sec, therefore,
Time taken for leakage of 154 g of gas is
t = 154/1.075 = 143.26 sec
Area of circle = πr² = 3.14×4² = 50.24m²
The best approximation is C.
The answer is m∠R = 48.59
°
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;
}