Answer:
A) Flow depth = 2.46 m, Froude number after jump = 0.464
B) head loss = 0.572 m
C) dissipation ratio = 0.173
Explanation:
Given data :
Velocity before jump ( v1 ) = 7 m/s
flow depth before jump ( y1 ) = 0.8 m
g = 9.81 m/s
Esi = 3.3 m ( calculated )
attached below is a detailed solution of the problem
The choices are:
a. bringing it to a mechanic for a tune-up
b. checking to make sure it is in working order
c. making sure you are entering your vehicle
d. giving the tires a good kick to check traction
Answer:
The answer is: letter b, checking to make sure it is in working order.
Explanation:
A "vehicle check" is essential for everyone involved. It makes the driver and the passengers safe, and also extends that safety to the people in the environment. Before driving, you need to check your car for the following: <em>fluids, wipers, spare wheels, leaks and the like</em>. This will ensure that your vehicle is in proper working order and <u>will lessen the possibility of car accident in the future.</u>
Thus, this explains the answer, letter b.
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");
}