Answer:
<h2>Steel</h2>
Explanation:
Steel is the metal that using in planes.
Aluminum and titanium also used in this aircraft industry.
Aluminum is ideal for aircraft manufacture because it's lightweight and strong.
<em>hope</em><em> </em><em>this</em><em> </em><em>helps</em><em>!</em><em>!</em>
<em>have</em><em> </em><em>a</em><em> </em><em>nice</em><em> </em><em>day</em><em>!</em>
<em>follow</em><em> </em><em>me</em><em> </em><em>=</em><em>=</em><em>></em><em> </em><em>Hi1315</em>
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:
Option D. w1[x] w2[u] w2[y] w1[y] w3[x] w3[u] w1[z]
Explanation:
The execution in the option D is correct. This is because there is more than one reasonable criterion.
Answer:
- using System;
- public class Program
- {
- public static void Main()
- {
- Console.WriteLine("Enter number of students: ");
- int num = Convert.ToInt32(Console.ReadLine());
- string [] firstName = new string[num];
- string [] lastName = new string[num];
-
- for(int i=0 ; i < num; i++){
- Console.WriteLine("Enter first name: ");
- firstName[i] = Console.ReadLine();
-
- Console.WriteLine("Enter last name: ");
- lastName[i] = Console.ReadLine();
- }
-
- for(int j=0; j < num; j++){
- Console.WriteLine(lastName[j] + "," + firstName[j]);
- }
- }
- }
Explanation:
Firstly, prompt user to enter number of student to be stored (Line 6- 7). Next, create two array, firstName and lastName with num size (Line 8-9).
Create a for-loop to repeat for num times and prompt user to enter first name and last name and then store them in the firstName and lastName array, respectively (Line 11 - 17).
Create another for loop to traverse through the lastName and firstName array and display the last name and first name by following the format given in the question (Line 19 - 21).
Explanation:
≈4.8
There really isn't an elegant way to express it. Just plug and chug for irrationals raised to other irrationals.