Answer:
Hook's law holds good up to. A elastic limit. B. plastic limit. C.yield point. D.Breaking point
Answer:
attached below is the detailed solution and answers
Explanation:
Attached below is the detailed solution
C(iii) : versus the parameter C
The parameter C is centered in a nonlinear equation, therefore the standard locus will not apply hence when you use a polynomial solver the roots gotten would be plotted against C
Answer:

Explanation:
For pressure gage we can determine this by saying:
The closed tank with oil and air has a pressure of P₁ and the pressure of oil at a certain height in the U-tube on mercury is p₁gh₁. The pressure of mercury on the air in pressure gauge is p₂gh₂. The pressure of the gage is P₂.

We want to work out P₁-P₂: Heights aren't given so we can solve it in terms of height: assuming h₁=h₂=h

Answer:
F=1.47 KN
Explanation:
Given that
Diameter of plate = 25 cm
Height of pool h = 3 m
We know that force can be given as
F= P x A
P=ρ x g x h
Now by putting the values
P=1000 x 10 x 3
P= 30 KPa


F= 30 x 0.049 KN
F=1.47 KN
So the force on the plate will be 1.47 KN.
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.