D. A magnetic field created by the electric current causes the compass needle to move.
Answer:
Doing work' is a way of transferring energy from one object to another, energy is transferred when a force moves through a distance.
Explanation: So more energy, more work done bc u transferred more energy to move the object and doing the work. and if you only use a little of energy, the work done also only a little.
Answer:
<em><u>1)A)</u></em>
<em><u>1)A)2)A)</u></em>
<h3><em><u>Hope it helps you </u></em><em><u>♡</u></em><em><u>♡</u></em></h3>
D.N(Newton) this is the S.I unit for force
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