Answer:
I think that the answer is the Chinese
Explanation:
Answer:
= -0.303 KW
Explanation:
This is the case of unsteady flow process because properties are changing with time.
From first law of thermodynamics for unsteady flow process

Given that tank is insulated so
and no mass is leaving so

Mass conservation 
is the initial and final mass in the system respectively.
Initially tank is evacuated so 
We know that for air
,

So now putting values

= -0.303 KW
Answer:
D.All of the above
Explanation:
Properties of hydrogen:
1.It is lighter than air.It has density about 0.089 g/L.
2.Hydrogen rapidly change from liquid state to gas,so special protection is required to protect it.
3.It is highly flammable gas.
4.Liquid form of hydrogen exits at -432 F .This is very low temperature so special protection requires to keep it in liquid form.
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:
I would say that it is forming.
Explanation:
Give brainliest if u can. :S