Answer:
Time period = 41654.08 s
Explanation:
Given data:
Internal volume is 210 m^3
Rate of air infiltration 
length of cracks 62 m
air density = 1.186 kg/m^3
Total rate of air infiltration 
total volume of air infiltration
Time period 
Answer:
3270 N/m^2
Explanation:
we can calculate the pressure difference between the bottom and surface of the tank by applying the equation for the net vertical pressure
Py = - Ph ( g ± a )
for a downward movement
Py = - Ph ( g - a ) ------ ( 1 )
From the above data given will be
p = 1000 kg/m^3, h = 2/3 * 0.5 = 0.33 m , a =2g , g = 9.81
input values into equation 1 becomes
Py = -Ph ( g - 2g ) = Phg ------ ( 3 )
Py = 1000 * 0.33 * 9.81
= 3270 N/m^2
Answer:
#include <iostream>
using namespace std;
void PrintPopcornTime(int bagOunces) {
if(bagOunces < 3){
cout << "Too small";
cout << endl;
}
else if(bagOunces > 10){
cout << "Too large";
cout << endl;
}
else{
cout << (6 * bagOunces) << " seconds" << endl;
}
}
int main() {
PrintPopcornTime(7);
return 0;
}
Explanation:
Using C++ to write the program. In line 1 we define the header "#include <iostream>" that defines the standard input/output stream objects. In line 2 "using namespace std" gives me the ability to use classes or functions, From lines 5 to 17 we define the function "PrintPopcornTime(), with int parameter bagOunces" Line 19 we can then call the function using 7 as the argument "PrintPopcornTime(7);" to get the expected output.
Answer:
Light = A xor B
Explanation:
If switches A and B produce True or False, then Light will be True for ...
Light = A xor B