The box is accelerated from rest to 4 m/s in a matter of 2.5 s, so its acceleration <em>a</em> is such that
4 m/s = <em>a</em> (2.5 s) → <em>a</em> = (4 m/s) / (2.5 s) = 1.6 m/s²
Then the force applied to the box has a magnitude <em>F</em> such that
<em>F</em> = (10 kg) (1.6 m/s²) = 16 N
Answer:
60 N
Explanation:
This is just Newton's Second Law
F = m*a
F = ?
m = 12 kg
a = 5 m/^2
F = 5*12 = 60 Newtons
Answer:
b
Explanation:
friction needs two objects
the two objects need to touch each other
the two objects need to either have relative movement or, tend to have relative movement urge. (kinetic friction or static friction)
Answer:
True
Explanation:
If there's no preference over the string case (upper case or lower case), one can convert both strings to upper case or to lowercase and then compare the converted strings to test if they're equal or not.
An Illustration is
string a = "Boy"
string b = 'bOy"
if(a.ToUpper() == b.ToUpper() || a.ToLower() == b.ToLower())
{
Print "Equal Strings"
}
else
{
Print "Strings are not equal";
}
The above will first convert both strings and then compare.
Since they are the same (after conversion), the statement "Equal Strings" will be printed, without the quotes