Answer:
a. 1.91 b. -8.13 mm
Explanation:
Modulus =stress/strain; calculating stress =F/A, hence determine the strain
Poisson's ratio =(change in diameter/diameter)/strain
Answer:
(a) Increases
(b) Increases
(c) Increases
(d) Increases
(e) Decreases
Explanation:
The tensile modulus of a semi-crystalline polymer depends on the given factors as:
(a) Molecular Weight:
It increases with the increase in the molecular weight of the polymer.
(b) Degree of crystallinity:
Tensile strength of the semi-crystalline polymer increases with the increase in the degree of crystallinity of the polymer.
(c) Deformation by drawing:
The deformation by drawing in the polymer results in the finely oriented chain structure of the polymer with the greater inter chain secondary bonding structure resulting in the increase in the tensile strength of the polymer.
(d) Annealing of an undeformed material:
This also results in an increase in the tensile strength of the material.
(e) Annealing of a drawn material:
A semi crystalline material which is drawn when annealed results in the decreased tensile strength of the material.
Answer:
c. and d
Explanation:
As a whistle-blower, one of your aim is to guide against unethical dealings of other people , hence you are creating an environment that uphold ethical conduct,
In addition, whistle-blowing will disclose all imminent dangers to the software community thereby preventing security breaches.
Answer:
2.8
Explanation:
The ideal mechanical advantage of the pulley IMA = D'/D where D' = diameter of output pulley = 7 inches and D = diameter of input pulley = 2.5 inches
So, IMA = D'/D
= 7/2.5
= 2.8
So, the ideal mechanical advantage of the pulley IMA = 2.8
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.