Step-by-step explanation:
hi hi hi nice to meet you meet you
No because solids can't transmit heat by convection, and convection only works because of hotter and quicker moving molecules have a lower density so they rise to the surface. But in a solid, the molecules can't move relative to each other. They only vibrate :)
9514 1404 393
Answer:
- slope: cost per mile
- y-intercept: fixed base cost
Step-by-step explanation:
The y-intercept is the value of y when x=0. The problem statement tells you that x is the number of miles driven, and y is the rental cost.
When the number of miles driven is zero, the rental cost is ...
y = 2.25×0 +70
y = 70
The cost of renting the truck is $70 when it isn't driven anywhere. The y-intercept ($70) is the basic, fixed cost of truck rental.
__
If x=1 (1 mile driven), then 2.25 is added to the cost of the truck rental. The slope (2.25) is the cost per mile driven. (That mileage cost is added to the basic rental cost.)
I'm pretty sure this is Triangle stuff, with Sin, Cos + Tan, etc.
I can't remember it all I'm afraid, but the angle will be the 1 degree, 10 minutes - the Hypotenuse side will be the 3.5 km
Answer:
for(j = n; j > 0; j--)
System.out.print(\"*\");
Step-by-step explanation:
-A for loop is a repetition control structure.
-It allows the efficiency to write a loop that would otherwise be written a couple of times.
-The output is a single line comprising n asterisks,
-The number of asterisks printed will be equivalent to the n-value declared.