Please add more details because I don’t know if you are using a book or passage, therefore I cannot help you unless you add more detail
Answer:
Viscosity is notated using the common classification “XW-XX”. The number preceding the “W” (winter) rates the oil's flow (viscosity) at zero degrees Fahrenheit (-17.8 degrees Celsius). The lower the number, the less the oil thickens in cold weather.
Answer:
a) Ef = 0.755
b) length of specimen( Lf )= 72.26mm
diameter at fracture = 9.598 mm
c) max load ( Fmax ) = 52223.24 N
d) Ft = 51874.67 N
Explanation:
a) Determine the true strain at maximum load and true strain at fracture
True strain at maximum load
Df = 9.598 mm
True strain at fracture
Ef = 0.755
b) determine the length of specimen at maximum load and diameter at fracture
Length of specimen at max load
Lf = 72.26 mm
Diameter at fracture
= 9.598 mm
c) Determine max load force
Fmax = 52223.24 N
d) Determine Load ( F ) on the specimen when a true strain et = 0.25 is applied during tension test
F = 51874.67 N
attached below is a detailed solution of the question above
Answer:
100 cm
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.