Answer:
BE SAFE
Explanation:
it stands for Burns, Electrocution, Shock, Arch Flash/Arc Blast, Fire, Explosions
Answer:
true
Explanation:
shear strain is define as the ratio of change in deformation to the original length perpendicular to the axes of member due to shear stress.
ε = deformation/original length
strain is a unit less quantity but shear stain is generally expressed in radians but it can also be expressed in degree.
Answer:
The correct option is;
D. The vessel has closed living spaces onboard
Explanation:
Type B-1 Fire extinguishers
A fire extinguisher is required by the law to be installed in a boat that hs the following specifications
1) There are closed compartment in the boat that can be used for fuel storage
2) There exist double double bottom that is only partially filled with flotation materials
3) There are closed living spaces in the boat
4) The fuel tank is permanently installed in the boat
5) The engine is inboard.
The equations are based on the following assumptions
1) The bar is straight and of uniform section
2) The material of the bar is has uniform properties.
3) The only loading is the applied torque which is applied normal to the axis of the bar.
4) The bar is stressed within its elastic limit.
Nomenclature
T = torque (Nm)
l = length of bar (m)
J = Polar moment of inertia.(Circular Sections) ( m^4)
J' = Polar moment of inertia.(Non circluar sections) ( m^4 )
K = Factor replacing J for non-circular sections.( m^4)
r = radial distance of point from center of section (m)
ro = radius of section OD (m)
τ = shear stress (N/m^2)
G Modulus of rigidity (N/m^2)
θ = angle of twist (radians)
Answer:
Program that removes all spaces from the given input
Explanation:
// An efficient Java program to remove all spaces
// from a string
class GFG
{
// Function to remove all spaces
// from a given string
static int removeSpaces(char []str)
{
// To keep track of non-space character count
int count = 0;
// Traverse the given string.
// If current character
// is not space, then place
// it at index 'count++'
for (int i = 0; i<str.length; i++)
if (str[i] != ' ')
str[count++] = str[i]; // here count is
// incremented
return count;
}
// Driver code
public static void main(String[] args)
{
char str[] = "g eeks for ge eeks ".toCharArray();
int i = removeSpaces(str);
System.out.println(String.valueOf(str).subSequence(0, i));
}
}