Answer:
576.21kJ
Explanation:
#We know that:
The balance mass 
so, 

#Also, given the properties of water as;

#We assume constant properties for the steam at average temperatures:
#Replace known values in the equation above;
#Using the mass and energy balance relations;

#We have
: we replace the known values in the equation as;

#Hence,the amount of heat transferred when the steam temperature reaches 500°C is 576.21kJ
Answer:
Given,
Temperature;
T = 393;;K
Convert to Celcius;
T = (393-273) degrees
T = 120°C
Using Table A-4 (Saturated water - Temperature table), at T = 120 C;
vf = 0.001060 m³/kg
vg = 0.89133 m³/kg
Quality is given as;
75% = 0.75
Specific volume is given as;
v = vf + x (vg - vf) = 0.001060 + 0.75(0.89133 _ 0.001060)
v= 0.66876 m³/kg
We know;
v = V/m
0.66876 = 100/m
m = 149.53 kg
Personally, I would go to the space station. The space station has extreme different levels of technology and abilities, plus who doesn’t want to go to space.
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:
Use a story structure,
Explanation: Usually story engage the audience.