Answer:
4 times around
Explanation:
The total number of teeth involved will be the same for each gear. If the front gear is connected to the pedal and it goes around twice, then 2·24 = 48 teeth will have passed the reference point.
If the rear gear is attached to the wheel, and 48 teeth pass the reference point, then it will have made ...
(48 teeth)/(12 teeth/turn) = 4 turns
Answer:
Examples of reciprocating motion in daily life are;
1) The needles of a sewing machine
2) Electric powered reciprocating saw blade
3) The motion of a manual tire pump
Explanation:
A reciprocating motion is a motion that consists of motion of a part in an upward and downwards or in a backward and forward (↔) direction repetitively
Examples of reciprocating motion in daily life includes the reciprocating motion of the needles of a sewing machine and the reciprocating motion of the reciprocating saw and the motion of a manual tire pump
In a sewing machine, a crank shaft in between a wheel and the needle transforms the rotary motion of the wheel into reciprocating motion of the needle.
Answer:
the generator induced voltage is 60.59 kV
Explanation:
Given:
S = 150 MVA
Vline = 24 kV = 24000 V
the network voltage phase is
the power transmitted is equal to:
the line induced voltage is
Answer:what are you trying to say
Explanation:
Answer:
class TriangleNumbers
{
public static void main (String[] args)
{
for (int number = 1; number <= 10; ++number) {
int sum = 1;
System.out.print("1");
for (int summed = 2; summed <= number; ++summed) {
sum += summed;
System.out.print(" + " + Integer.toString(summed));
}
System.out.print(" = " + Integer.toString(sum) + '\n');
}
}
}
Explanation:
We need to run the code for each of the 10 lines. Each time we sum numbers from 1 to n. We start with 1, then add numbers from 2 to n (and print the operation). At the end, we always print the equals sign, the sum and a newline character.