Answer:
Cyclical
Explanation:
I looked at the next question on edgenuity and it said it in the question.
Answer:I don't think it's a better idea to eat unhealthy food while having green tea because it will act as a strumbling rock in your attempt of getting weight loss.
Explanation:I don't say you have to mark my ans as brainliest but if ypu think it has really helped you plz don't forget to thank me...
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:

Explanation:
Given




Required
Plot a steam and leaf display for the given data
Start by categorizing the data by their tenth values:




The 0.3's is will be plotted as thus:

The 0.4's is as follows:

The 0.5's is as follows:

The 0.6's is as thus:

Lastly, the 0.7's is as thus:

The combined steam and leaf plot is:

Answer:
Conduction is the transfer of heat by contact, mostly in solids (metals especially) . In conduction, the molecules of the body in contact with the hot body vibrates about a fixed point. The vibration causes collision between these vibrating molecules and their neighboring molecule, causing them to vibrate too; creating a wave of vibrating molecules that transfer the heat along the solid material.
Convection is the transfer of heat in fluids (liquids and gases), that involves the initial heat transfer between a portion of the fluids molecules and the hot body (conduction) at the thermal boundary, and then the eventual movement of that portion of the fluid from that position to a colder part of the fluid. The heated fluid is replaced by a colder fluid (this is due to buoyant forces due to difference in density of the cold and the warm parts of the fluid). This movement ensure thorough mixing of the fluid and the eventual heating up of the entire fluid.
From the above statements one can clearly see that convection is comprised of an initial heat transfer by conduction at the thermal boundary, followed by movement of the fluid molecules.