Answer:
The answer is
C. Split phase motor
Explanation:
Clamp meters rely on the principle of magnetic induction to make non contact AC current measurements. Electric current flowing through a wire produces a magnetic field.
Which is similar to basic mode of operation of electric motor and split phase motor is a type of electric motor.
What is a a clamp on meter?
Clamp meters are electrical testers which have wide jaws that are able to clamp around an electrical conductor. Originally designed as a single purpose tool for measuring AC current, clamp meters now include inputs for accepting test leads and other probes that support a wide range of electrical measurements, the jaws of a clamp meter permit work in tight spaces and permits current measurements on live conductors without circuit interruption.
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).
Answer:
B probably
Explanation:
Because the prompt doesn't specify what sort of violation it could be anything maybe when they release the metals during the day and so on.
Answer:
Part a: The yield moment is 400 k.in.
Part b: The strain is 
Part c: The plastic moment is 600 ksi.
Explanation:
Part a:
As per bending equation

Here
- M is the moment which is to be calculated
- I is the moment of inertia given as

Here
- b is the breath given as 0.75"
- d is the depth which is given as 8"



The yield moment is 400 k.in.
Part b:
The strain is given as

The stress at the station 2" down from the top is estimated by ratio of triangles as

Now the steel has the elastic modulus of E=29000 ksi

So the strain is 
Part c:
For a rectangular shape the shape factor is given as 1.5.
Now the plastic moment is given as

The plastic moment is 600 ksi.
Answer:
are you wht
didn't understand the question