Answer:
<em>a) 4.51 lbf-s^2/ft</em>
<em>b) 65.8 kg</em>
<em>c) 645 N</em>
<em>d) 23.8 lb</em>
<em>e) 65.8 kg</em>
<em></em>
Explanation:
Weight of the man on Earth = 145 lb
a) Mass in slug is...
32.174 pound = 1 slug
145 pound =
slug
= 145/32.174 = <em>4.51 lbf-s^2/ft</em>
b) Mass in kg is...
2.205 pounds = 1 kg
145 pounds =
kg
= 145/2.205 = <em>65.8 kg</em>
c) Weight in Newton = mg
where
m is mass in kg
g is acceleration due to gravity on Earth = 9.81 m/s^2
Weight in Newton = 65.8 x 9.81 = <em>645 N</em>
d) If on the moon with acceleration due to gravity of 5.30 ft/s^2,
1 m/s^2 = 3.2808 ft/s^2
m/s^2 = 5.30 ft/s^2
= 5.30/3.2808 = 1.6155 m/s^2
weight in Newton = mg = 65.8 x 1.6155 = 106
weight in pounds = 106/4.448 = <em>23.8 lb</em>
e) The mass of the man does not change on the moon. It will therefore have the same value as his mass here on Earth
mass on the moon = <em>65.8 kg</em>
Answer:
Shearing stresses are the stresses generated in any material when a force acts in such a way that it tends to tear off the material.
Generally the above definition is valid at an armature level, in more technical terms shearing stresses are the component of the stresses that act parallel to any plane in a material that is under stress. Shearing stresses are present in a body even if normal forces act on it along the centroidal axis.
Mathematically in a plane AB the shearing stresses are given by

Yes the shearing force which generates the shearing stresses is similar to frictional force that acts between the 2 surfaces in contact with each other.
Answer:
i) SF:
ii) BM : 
Explanation:
Let's take,
Making y the subject of formula, we have :

For shear force (SF), we have:
This is the area of the diagram.

The shear force equation =
For bending moment (BM):


The bending moment equation =

Answer:
Alice is correct.
The loop are dependent.
Explanation:
for(i = 1; i <= N; i = (i*2)+17 )
for(k = i+1; k <= i+N; k = k+1) // notice i in i+1 and i+N
printf("B")
This is a nested for-loop.
After the first for-loop opening, there is no block of statement to be executed rather a for-loop is called again. And the second for-loop uses the value of i from the first for-loop. The value of N is both called from outside the loop.
So, the second for-loop depend on the first for loop to get the value of i. For clarity purpose, code indentation or use of curly brace is advised.