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:
A force must s applied to a wall or roof rafters to add strength and keep the building straight and plumb
Answer:
a)We know that acceleration a=dv/dt
So dv/dt=kt^2
dv=kt^2dt
Integrating we get
v(t)=kt^3/3+C
Puttin t=0
-8=C
Putting t=2
8=8k/3-8
k=48/8
k=6
Answer:
insert (array[] , value , currentsize , maxsize )
{
if maxsize <=currentsize
{
return -1
}
index = currentsize-1
while (i>=0 && array[index] > value)
{
array[index+1]=array[index]
i=i-1
}
array[i+1]=value
return 0
}
Explanation:
1: Check if array is already full, if it's full then no component may be inserted.
2: if array isn't full:
- Check parts of the array ranging from last position of range towards initial range and determine position of that initial range that is smaller than the worth to be inserted.
- Right shift every component of the array once ranging from last position up to the position larger than the position at that smaller range was known.
- assign new worth to the position that is next to the known position of initial smaller component.