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:
If Reynolds number increases the extent of the region around the object that is affected by viscosity decreases.
Explanation:
Reynolds number is an important dimensionless parameter in fluid mechanics.
It is calculated as;

where;
ρ is density
v is velocity
d is diameter
μ is viscosity
All these parameters are important in calculating Reynolds number and understanding of fluid flow over an object.
In aerodynamics, the higher the Reynolds number, the lesser the viscosity plays a role in the flow around the airfoil. As Reynolds number increases, the boundary layer gets thinner, which results in a lower drag. Or simply put, if Reynolds number increases the extent of the region around the object that is affected by viscosity decreases.
Answer:
Explanation:
The python code to generate this is quite simple to run.
i hope you understand everything written here, you can as well try out other problems to understand better.
First to begin, we import the package;
Code:
import pandas as pd
import matplotlib.pyplot as plt
name = input('Enter name of the file: ')
op = input('Enter name of output file: ')
df = pd.read_csv(name)
df['Date'] = pd.to_datetime(df["Date"].apply(str))
plt.plot(df['Date'],df['Absent']/(df['Present']+df['Absent']+df['Released']),label="% Absent")
plt.legend(loc="upper right")
plt.xticks(rotation=20)
plt.savefig(op)
plt.show()
This should generate the data(plot) as seen in the uploaded screenshot.
thanks i hope this helps!!!
Answer:
Codes for each of the problems are explained below
Explanation:
PROBLEM 1 IN C++:
#include<iostream>
using namespace std;
//fib function that calculate nth integer of the fibonacci sequence.
void fib(int n){
// l and r inital fibonacci values for n=1 and n=2;
int l=1,r=1,c;
//if n==1 or n==2 then print 1.
if(n==1 || n==2){
cout << 1;
return;
}
//for loop runs n-2 times and calculates nth integer of fibonacci sequence.
for(int i=0;i<n-2;i++){
c=l+r;
l=r;
r=c;
cout << "(" << i << "," << c << ") ";
}
//prints nth integer of the fibonacci sequence stored in c.
cout << "\n" << c;
}
int main(){
int n; //declared variable n
cin >> n; //inputs n to find nth integer of the fibonacci sequence.
fib(n);//calls function fib to calculate and print fibonacci number.
}
PROBLEM 2 IN PYTHON:
def fib(n):
print("fib({})".format(n), end=' ')
if n <= 1:
return n
else:
return fib(n - 1) + fib(n - 2)
if __name__ == '__main__':
n = int(input())
result = fib(n)
print()
print(result)