The correct statement is: a higher than a normal voltage drop could indicate high resistance. Technician B is correct.
<h3>Ohm's law</h3>
Ohm's law states that the current flowing through a metallic conductor is directly proportional to the voltage provided all physical conditions are constant. Mathematically, it is expressed as
V = IR
Where
V is the potential difference
I is the current
R is the resistance
<h3>Technician A</h3>
High resistance causes an increase in current flow
V = IR
Divide both side by I
R = V / I
Thus, technician A is wrong as high resistance suggest low current flow
<h3>Technician B</h3>
Higher than normal voltage drop could indicate high resistance
V = IR
Thus, technician B is correct as high voltage indicates high resistance
<h3>Conclusion </h3>
From the above illustration, we can see that technician B is correct
Learn more about Ohm's law:
brainly.com/question/796939
Answer:
The differences are listed below
Explanation:
The differences between consolidation and compaction are as follows:
In compaction the mechanical pressure is used to compress the soil. In consolidation, there is an application of stead pressure.
In compaction, there is a dynamic load by rapid mechanical methods like tamping, rolling, etc. In consolidation, there is static and sustained pressure applied for a long time.
In compaction, the soil volume is reduced by removing air from the void. In consolidation, the soil volume is reduced by squeezing out water from the pores.
Compaction is used for sandy soil, consolidation on the other hand, is used for clay soil.
Answer:
The value of R is 10101
Explanation:
As per the given data
D = 1000100100
G = 100101
Redundant bit = 6-bits - 1-bit = 5-bits
No add fice zero to D
D = 100010010000000
Now calculate R as follow
R = D / G
R = 100010010000000 / 100101
R = 10101
Workings are attached with this question
To solve this problem we will apply the concepts related to translational torque, angular torque and the kinematic equations of angular movement with which we will find the angular displacement of the system.
Translational torque can be defined as,
Here,
F = Force
d = Distance which the force is applied
At the same time the angular torque is defined as the product between the moment of inertia and the angular acceleration, so using the previous value of the found torque, and with the moment of inertia given by the statement, we would have that the angular acceleration is
Now the angular displacement is
Here
= Initial angular velocity
t = time
Angular acceleration
= Angular displacement
Time is given as 1 minute, in seconds will be
There is not initial angular velocity, then
Replacing,
The question neglects the effect of gravitational force.
#include
int main () {
printf("Program to calculate the square footage of the house.\n");
int total_rooms;
double length, width;
double total_square_footage = 0.0;
printf("Enter total number of rooms in the house:");
scanf("%d", &total_rooms);
for (int i = 0; i
printf("Enter the lenght and width of room %d: ", i+1);
scanf("%if %if", &lenght, &width);
total_square_footage += lenght*width;
}
printf("Total square footage of the house: %if\n", total_square_footage);
return 0;
}
Please mark it as brainliest answer:).