The impact behavior of plastic materials is strongly dependent upon the temperature. At high temperatures, materials are more ductile and have high impact toughness. At low temperatures, some plastics that would be ductile at room temperature become brittle.
Answer and Explanation:
The DC motor has coils inside it which produces magnetic field inside the coil and due to thus magnetic field an emf is induced ,this induced emf is known as back emf. The back emf always acts against the applied voltage. It is represented by 
The back emf of the DC motor is given by
Here N is speed of the motor ,P signifies the number of poles ,Z signifies the the total number of conductor and A is number of parallel paths
As from the relation we can see that back emf and speed ar dependent on each other it means back emf limits the speed of DC motor
Answer:
R = 31.9 x 10^(6) At/Wb
So option A is correct
Explanation:
Reluctance is obtained by dividing the length of the magnetic path L by the permeability times the cross-sectional area A
Thus; R = L/μA,
Now from the question,
L = 4m
r_1 = 1.75cm = 0.0175m
r_2 = 2.2cm = 0.022m
So Area will be A_2 - A_1
Thus = π(r_2)² - π(r_1)²
A = π(0.0225)² - π(0.0175)²
A = π[0.0002]
A = 6.28 x 10^(-4) m²
We are given that;
L = 4m
μ_steel = 2 x 10^(-4) Wb/At - m
Thus, reluctance is calculated as;
R = 4/(2 x 10^(-4) x 6.28x 10^(-4))
R = 0.319 x 10^(8) At/Wb
R = 31.9 x 10^(6) At/Wb
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).