C, because a narrow structure evacuation below surface ground isn’t the best and a structure holding forces and isn’t to do with the question at all and d doesn’t matter if there include away or not
Answer:
15625 moles of methane is present in this gas deposit
Explanation:
As we know,
PV = nRT
P = Pressure = 230 psia = 1585.79 kPA
V = Volume = 980 cuft = 27750.5 Liters
n = number of moles
R = ideal gas constant = 8.315
T = Temperature = 150°F = 338.706 Kelvin
Substituting the given values, we get -
1585.79 kPA * 27750.5 Liters = n * 8.315 * 338.706 Kelvin
n = (1585.79*27750.5)/(8.315 * 338.706) = 15625
Answer:
heyoo!
a printer, camera, computerr
hope this helpss>3
Explanation:
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.
A well arranged floor plan is one that optimises the given floor area. Floor plans are useful to help design furniture layout, wiring systems, and much more. Option B is the answer, since it does not meet the standard of a plan
<h3>What is a Floor Plan?</h3>
A floor plan is a scaled diagram of a room or building viewed from above. The floor plan may depict an entire building, one floor of a building, or a single room. It may also include measurements, furniture, appliances, or anything else necessary to the purpose of the plan.
<h3>Other properties of a floor plan are:</h3>
- Maximize the property
- Utilize space effectively
- Accessibility
- Flexibility
- Functionality
- Maximize the use of light
- Attention to size
- Fitting to your lifestyle
Learn more:
brainly.com/question/25057316