Answer:
a)Wt =25.68 lbf
b)Wt = 150 lbf
F= 899.59 N
Explanation:
Given that
m= 150 lbm
a)
Weight on the spring scale(Wt) = m g
We know that
Wt = 150 x 5.48/32 lbf
Wt =25.68 lbf
b)
On the beam scale
This is scale which does not affects by gravitational acceleration.So the wight on the beam scale will be 150 lbf.
Wt = 150 lbf
If the plane is moving upward with acceleration 6 g's then the for F
F = m a
We know that
a=6 g's
So
F = 90 x 9.99 N
F= 899.59 N
Answer:
Microsoft is the correct answer
Answer:
#WeirdestQuestionOfAllTime
Explanation:
Answer:
A stack is an ordered list of elements where all insertions and deletions are made at the same end, whereas a queue is exactly the opposite of a stack.
Explanation:
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));
}
}