Answer:
The code will be:
#include <stdio.h>
#include <stdlib.h>
main () {
double weight, shippingCharge, rate, segments;
int distance;
printf("Enter the weight: \n");
scanf("%lf", &weight);
printf("Enter the distance: \n");
scanf("%i", &distance);
if (weight <= 10) {
printf("Rate is $3.00 \n");
rate = 3;
} else {
printf("Rate is $5.00 \n");
rate = 5;
}
if (distance % 500 == 0) {
segments = distance / 500;
} else {
segments = distance / 500 + 1;
}
shippingCharge = rate * segments;
if (distance >1000) {
shippingCharge = shippingCharge + 10;
}
printf("Your shipping charge is $%lf\n", shippingCharge);
system ("pause");
}
Answer is True.. hope I helped... pls mark brainliest
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

Technician A is correct. Technician B is wrong because a gear's transmission is used to increase or decrease torque.
The relation torque is relying on multiplying the circumferential detail with the resource of the usage of the radius; massive gears experience a greater amount of torque, at the same time as smaller gears experience a great deal much less torque. Similarly, the torque ratio is equal to the ratio of the gears' radii. A gear's transmission torque modifications as it will boom or decreases speed. Commonly, with the resource of the usage of lowering the speed, a small torque on the doorway issue is transferred as a massive torque at the output issue. The calculation of torque is quantified with the resource of the usage of an extensive form of teeth.
Learn more about the torque at brainly.com/question/28220969
#SPJ4