Answer:
230.51 m
Explanation:
Pb = 695 mmHg
Pt = 675 mmHg
Pb - Pt = 20 mmHg
Calculate dP:
dP = p * g * H = (13600)*(9.81)*(20/1000) = 2668.320 Pa
Calculate Height of building as dP is same for any medium of liquid
dP = p*g*H = 2668.320
H = 2668.32 / (1.18 * 9.81) = 230.51 m
Main Answer:
<u>The Bureau of Indian standards</u> developed the national electric code, the national building code, and the national fire prevention code.
Sub heading:
explain BIS?
Explanation:
1.BIS-bureau of indian standard is the national standard body of india.
2.BIS is responbility for the harmonious deve;opment of the activities of standardization.marking .
Reference link:
https://brainly.com
Hashtag:
#SPJ4
Answer:
The difference in weight and size?
Explanation:
It explains itself :P
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.