Answer:
Explanation:
Step by step solved solution is given in the attached document.
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:
Explanation:
Pie charts generally should have no more than eight segments.
Answer:
import java.util.Scanner;
public class FindMatchValue {
public static void main (String [] args) {
Scanner scnr = new Scanner(System.in);
final int NUM_VALS = 4;
int[] userValues = new int[NUM_VALS];
int i;
int matchValue;
int numMatches = -99; // Assign numMatches with 0 before your for loop
matchValue = scnr.nextInt();
for (i = 0; i < userValues.length; ++i) {
userValues[i] = scnr.nextInt();
}
/* Your solution goes here */
numMatches = 0;
for (i = 0; i < userValues.length; ++i) {
if(userValues[i] == matchValue) {
numMatches++;
}
}
System.out.println("matchValue: " + matchValue + ", numMatches: " + numMatches);
}
}
Answer: (a) 36.18mm
(b) 23.52
Explanation: see attachment