Answer:
Technician B
Explanation:
Technician B is correct in his argument. This is because according to what he said, as the computer pulses stimuli the coil will turn on and off, promoting an increase in the voltage that will cause the fluctuation. Technician A is incorrect because the procedure he indicated imposes that the voltage is checked at the negative terminal and not at the positive.
Answer:
P=11 kW
Explanation:
Given that
Number of poles= 8
I.E.C. 180L motor frame
From data book , for 8 poles motor at 50 Hz
Speed = 730 rpm
Power factor = 0.75
Efficiency at 100 % load= 89.3 %
Efficiency at 50 % load= 89.1 %
Output power = 11 kW
Therefore the rated output power of 8 poles motor will be 11 kW. Thus the answer will be 11 kW.
P=11 kW
Explanation:
McLeod gauge:
It is used to measure very low pressure of gas.It measure gas pressure by the help of mercury(Hg).it measure absolute pressure of gas.
McLeod gauge on the principle of Boyle's law.Boyle's law state that ,at constant temperature the pressure of gas is directly proportional to its volume.From Boyle's law

A sample of gas is taken from vacuum then its pressure is measured by help Hg.
Answer:
import java.util.*;
public class Main {
public static void main(String[] args) {
double milesPerGallon = 0;
int totalMiles = 0;
int totalGallons = 0;
double totalMPG = 0;
Scanner input = new Scanner(System.in);
while(true){
System.out.print("Enter the miles driven: ");
int miles = input.nextInt();
if(miles <= 0)
break;
else{
System.out.print("Enter the gallons used: ");
int gallons = input.nextInt();
totalMiles += miles;
totalGallons += gallons;
milesPerGallon = (double) miles/gallons;
totalMPG = (double) totalMiles / totalGallons;
System.out.printf("Miles per gallon for this trip is: %.1f\n", milesPerGallon);
System.out.printf("Total miles per gallon is: %.1f\n", totalMPG);
}
}
}
}
Explanation:
Initialize the variables
Create a while loop that iterates until the specified condition is met inside the loop
Inside the loop, ask the user to enter the miles. If the miles is less than or equal to 0, stop the loop. Otherwise, for each trip do the following: Ask the user to enter the gallons. Add the miles and gallons to totalMiles and totalGallons respectively. Calculate the milesPerGallon (divide miles by gallons). Calculate the totalMPG (divide totalMiles by totalGallons). Print the miles per gallon and total miles per gallon.
Answer:
Total elongation will be 0.012 m
Explanation:
We have given diameter of the cylinder = 2.1 mm
Length of wire 
So radius 
Load F = 280 N
Elastic modulus = 207 Gpa
Area of cross section 
We know that elongation in wire is given by
, here F is load, L is length, A is area and E is elastic modulus
So 