Answer:
The maximum allowable distance = 5 m
Explanation:
Data:
There will be three forces on the jib. Let the forces be denoted as:
,
and the force on pole AB
To find the angle AB makes with the horizontal beam:

The load has a mass of 2 000 kg then, the force will be:
F = mg, where g = 9.81 m/s²
= 
Breaking AB into its x and y coordinates:

Then,
∑
= 0

∑
∑
so the components of the forces will be 30 656.2 N and - 3 372.18 N
I would go with C but i am not 100 percent on that
True
Suspension is the system of tires, tire air, springs, shock absorbers and linkages that connects a vehicle to its wheels and allows relative motion between the two.[1] Suspension systems must support both road holding/handling and ride quality
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));
}
}