Answer:
166.67 N
Explanation:
Given:
Mass flow rate = 50 kg/min = 50 kg / 60 seconds = 0.833 kg/s
Initial velocity = 200 m/s
after striking the normal board the water will flow in the normal direction, thus the final velocity in the direction of the initial flow will be zero
therefore,
Force = (change in momentum)
or
Force = Initial momentum - final momentum
or
Force = 0.833 × 200 - 0.833 × 0
or
Force = 166.67 N
Answer:
C is the answer if not c then b
Answer:well u can use to make a shelter but that's all I can think of ??
Explanation:
Answer:
Explanation:
Attached is the solution to the question
Answer:
class TriangleNumbers
{
public static void main (String[] args)
{
for (int number = 1; number <= 10; ++number) {
int sum = 1;
System.out.print("1");
for (int summed = 2; summed <= number; ++summed) {
sum += summed;
System.out.print(" + " + Integer.toString(summed));
}
System.out.print(" = " + Integer.toString(sum) + '\n');
}
}
}
Explanation:
We need to run the code for each of the 10 lines. Each time we sum numbers from 1 to n. We start with 1, then add numbers from 2 to n (and print the operation). At the end, we always print the equals sign, the sum and a newline character.