Answer:
Convection
Explanation:
three types of heat transfer
Heat is transfered via solid material (conduction), liquids and gases (convection), and electromagnetical waves (radiation).
Answer:
a) > x<-c(1,2,3,4,5)
> y<-c(1.9,3.5,3.7,5.1,6)
> linearmodel<-lm(y~x)
And the output is given by:
> linearmodel
Call:
lm(formula = y ~ x)
Coefficients:
(Intercept) x
1.10 0.98
b) 
And if we compare this with the general model 
We see that the slope is m= 0.98 and the intercept b = 1.10
Explanation:
Part a
For this case we have the following data:
x: 1,2,3,4,5
y: 1.9,3.5,3.7,5.1, 6
For this case we can use the following R code:
> x<-c(1,2,3,4,5)
> y<-c(1.9,3.5,3.7,5.1,6)
> linearmodel<-lm(y~x)
And the output is given by:
> linearmodel
Call:
lm(formula = y ~ x)
Coefficients:
(Intercept) x
1.10 0.98
Part b
For this case we have the following trend equation given:

And if we compare this with the general model 
We see that the slope is m= 0.98 and the intercept b = 1.10
The first one, as the mass is higher so it accelerates more
An Inverted Microscope gives you more freedom than an upright microscope. Inverted microscopes are very useful
to examine the surface of heavy and large sized Items
for industrial purposes. Whereas <span>upright microscopes have very limited distance between the table and the objective.</span>
Answer:
Average velocity v = 21.18 m/s
Average acceleration a = 2 m/s^2
Explanation:
Average speed equals the total distance travelled divided by the total time taken.
Average speed v = ∆x/∆t = (x2-x1)/(t2-t1)
Average acceleration equals the change in velocity divided by change in time.
Average acceleration a = ∆v/∆t = (v2-v1)/(t2-t1)
Where;
v1 and v2 are velocities at time t1 and t2 respectively.
And x1 and x2 are positions at time t1 and t2 respectively.
Given;
t1 = 3.0s
t2 = 20.0s
v1 = 11 m/s
v2 = 45 m/s
x1 = 25 m
x2 = 385 m
Substituting the values;
Average speed v = ∆x/∆t = (x2-x1)/(t2-t1)
v = (385-25)/(20-3)
v = 21.18 m/s
Average acceleration a = ∆v/∆t = (v2-v1)/(t2-t1)
a = (45-11)/(20-3)
a = 2 m/s^2