A. Email your teacher right away. It would be the safest option.
Explanation:
The correct answers to the fill in the blanks would be;
1. Viscoelastic stress relaxation refers to scenarios for which the stress applied to a polymer must decay over time in order to maintain a constant strain. Otherwise, over time, the polymer chains will slip and slide past one another in response to a constant applied load and the strain will increase (in magnitude).
2. Viscoelastic creep refers to scenarios for which a polymer will permanently flow over time in response a constant applied stress.
The polymer whose properties have been mentioned above is commonly known as Kevlar.
It is mostly used in high-strength fabrics and its properties are because of several hydrogen bonds between polymer molecules.
Answer:
sum2 = 0
counter = 0
lst = [65, 78, 21, 33]
while counter < len(lst):
sum2 = sum2 + lst[counter]
counter += 1
Explanation:
The counter variable is initialized to control the while loop and access the numbers in <em>lst</em>
While there are numbers in the <em>lst</em>, loop through <em>lst</em>
Add the numbers in <em>lst</em> to the sum2
Increment <em>counter</em> by 1 after each iteration
Answer:
I don't understand the language French sorry can't answer