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.
Answer:
The tension in the rope at the lowest point is 270 N
Explanation:
Given;
weight of the ball, W = 150 N
length of the rope, r = 4 m
velocity of the ball, v = 5.6 m/s
When the ball passes through the lowest point, the tension on the rope is the sum of weight of the ball and centripetal force.
T = W + F
Centripetal force, F = mv²/r
where;
m is the mass of the ball
m = W/g
m = 150 / 9.8 = 15.306 kg
Centripetal force, F = mv²/r
F = (15.306 x 5.6²)/4
F = 120 N
T = W + F
T = 150 + 120
T = 270 N
Therefore, the tension in the rope at the lowest point is 270 N
On highways, the far left lane is usually the<u> fastest</u> moving traffic.
Answer: Option D.
<u>Explanation:</u>
For the most part, the right lane of a freeway is for entering and leaving the traffic stream. It is an arranging path, for use toward the start and end of your interstate run. The center paths are for through traffic, and the left path is for passing. On the off chance that you are not passing somebody, try not to be driving in the left path.
Regular practice and most law on United States expressways is that the left path is saved for passing and quicker moving traffic, and that traffic utilizing the left path must respect traffic wishing to surpass.
In order to fly, you must have a device/mechanism that will release hot air, causing it to fly. A jet pack will do the job.