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");
}
Explanation:
i) When we divide water vapor's partial pressure by the water's equilibrium vapor pressure at a given temperature we get relative humidity.
It is denoted by ∅

ii) When air is cooled so that it becomes saturated with water vapor the temperature where this occurs is called the dew point.
Answer:
Carbon dioxide temperature at exit is 317.69 K
Carbon dioxide flow rate at heater exit is 20.25 m³/s
Explanation:
Detailed steps are attached below.
Answer:
When a horse pull a cart the action is on?
A horse is harnessed to a cart. If the horse tries to pull the cart, the horse must exert a force on the cart. By Newton's third law the cart must then exert an equal and opposite force on the horse. Newton's second law tells us that acceleration is equal to the net force divided by the mass of the system.
Explanation: