Can someone please answer this question I'm doing the test now?
Answer:
28,400 N
Explanation:
Let's start by calculating the pressure that acts on the upper surface of the hatch. It is given by the sum of the atmospheric pressure and the pressure due to the columb of water, which is given by Stevin's law:

On the lower part of the hatch, there is a pressure equal to

So, the net pressure acting on the hatch is

which acts from above.
The area of the hatch is given by:

So, the force needed to open the hatch from the inside is equal to the pressure multiplied by the area of the hatch:

Answer:2m/s²
Explanation: Well F=MA so sice F=4N and M=2kg let's plug in the values
4N=2KG*A
A=4N/2KG
A=2m/s²
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 correct answer is B.
In a velocity vs time graph, a line going up means an increase in velocity, or speed, which correlates to positive acceleration. Negative acceleration means slowing down.