Answer:
C. Neither Technician A nor B
Explanation:
Just took the test
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:
1. The net power developed=9370.773KW
2. Thermal Efficiency= 0.058
Explanation
Check attachment
Answer:
The average velocity is 0.203 m/s
Explanation:
Given;
initial displacement, x₁ = 20 yards = 18.288 m
final displacement, x₂ = ¹/₃ x 18.288 = 6.096 m
change in time between 5:02 PM and 5:03 PM, Δt = 3 mins - 2 mins = 1 min = 60 s
The average velocity is given by;
V = change in displacement / change in time
V = (x₂ - x₁) / Δt
V = (18.288 - 6.096) / 60
V = 0.203 m/s
Therefore, the average velocity is 0.203 m/s