Answer:
I forget the word for it, but probably the guys who set up the power lines in the city.
Explanation:
Answer:
a)Are generally associated with factor.
Explanation:
We know that losses are two types
1.Major loss :Due to friction of pipe surface
2.Minor loss :Due to change in the direction of flow
As we know that when any hindrance is produced during the flow of fluid then it leads to generate the energy losses.If flow is along uniform diameter pipe then there will not be any loss but if any valve and fitting placed is the path of fluid flow due to this direction of fluid flow changes and it produce losses in the energy.
Lot' of experimental data tell us that loss in the energy due to valve and fitting are generally associated with K factor.These losses are given as

Answer:
1). Keep your distance. Drive far enough behind the car in front of you so you can stop safely. ...
Drive strategically. Avoid situations that could force you to suddenly use your brakes. ...
Don't get distracted. ...
Don't drive when drowsy or under the influence.
2). By far the deadliest accident type is the head-on collision. Head-on collisions consider both vehicle's speed at the time of the crash, which means even an accident at lower speeds can be catastrophic
Explanation:
first is how to avoid the collision and second is bad collision
Answer:
import java.util.*;
public class Main {
public static void main(String[] args) {
double milesPerGallon = 0;
int totalMiles = 0;
int totalGallons = 0;
double totalMPG = 0;
Scanner input = new Scanner(System.in);
while(true){
System.out.print("Enter the miles driven: ");
int miles = input.nextInt();
if(miles <= 0)
break;
else{
System.out.print("Enter the gallons used: ");
int gallons = input.nextInt();
totalMiles += miles;
totalGallons += gallons;
milesPerGallon = (double) miles/gallons;
totalMPG = (double) totalMiles / totalGallons;
System.out.printf("Miles per gallon for this trip is: %.1f\n", milesPerGallon);
System.out.printf("Total miles per gallon is: %.1f\n", totalMPG);
}
}
}
}
Explanation:
Initialize the variables
Create a while loop that iterates until the specified condition is met inside the loop
Inside the loop, ask the user to enter the miles. If the miles is less than or equal to 0, stop the loop. Otherwise, for each trip do the following: Ask the user to enter the gallons. Add the miles and gallons to totalMiles and totalGallons respectively. Calculate the milesPerGallon (divide miles by gallons). Calculate the totalMPG (divide totalMiles by totalGallons). Print the miles per gallon and total miles per gallon.
Answer:
Step 1: State your null and alternate hypothesis. ...
Step 2: Collect data. ...
Step 3: Perform a statistical test. ...
Step 4: Decide whether the null hypothesis is supported or refuted. ...
Step 5: Present your findings.