Answer is: $637.28; just did the math but i really don’t want to type it all out.
Answer: (b)
Explanation:
Given
Original length of the rod is 
Strain experienced is 
Strain is the ratio of the change in length to the original length

Therefore, new length is given by (Considering the load is tensile in nature)

Thus, option (b) is correct.
Answer:
Explanation:
- a) Given C [ cal pro fat calc sod]
[140 27 3 13 64]
- P = [cal pro fat calc sod]
[180 4 11 24 662]
- B = [cal pro fat calc sod]
[50 5 1 82 20]
To find C+2P+3B = [140 27 3 13 64] + 2[180 4 11 24 662] + 3[50 5 1 82 20]
= [650 54 28 307 1448]
The entries represent skinless chicken breast , One-half cup of potato salad and One broccoli spear.
Engineering is the technical
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.