What do y’all do when ya girl go eat lunch and eat it and eat
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:
lubricating all moving parts in the engine
Explanation:
like the pistons, pushrods, and the crank
Answer:
No, they need to be somewhat flexible so that forces such as turbulance don't shear the wing off.
Answer:
1561.84 MPa
Explanation:
L=20 cm
d1=0.21 cm
d2=0.25 cm
F=5500 N
a) σ= F/A1= 5000/(π/4×(0.0025)^2)= 1018.5916 MPa
lateral strain= Δd/d1= (0.0021-0.0025)/0.0025= -0.16
longitudinal strain (ε_l)= -lateral strain/ν = -(-0.16)/0.3
(assuming a poisson's ration of 0.3)
ε_l =0.16/0.3 = 0.5333
b) σ_true= σ(1+ ε_l)= 1018.5916( 1+0.5333)
σ_true = 1561.84 MPa
ε_true = ln( 1+ε_l)= ln(1+0.5333)
ε_true= 0.4274222
The engineering stress on the rod when it is loaded with a 5500 N weight is 1561.84 MPa.