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:
μ = 0.136
Explanation:
given,
velocity of the car = 20 m/s
radius of the track = 300 m
mass of the car = 2000 kg
centrifugal force
F c = 2666. 67 N
F f= μ N
F f = μ m g
2666.67 = μ × 2000 × 9.8
μ = 0.136
so, the minimum coefficient of friction between road surface and car tyre is equal to μ = 0.136
Answer:
Answer D
Explanation:
They need to be checked monthly
Answer:
Inside the Sun.
Explanation:
Inside the Sun, this process begins with protons (which is simply a lone hydrogen nucleus) and through a series of steps, these protons fuse together and are turned into helium. This fusion process occurs inside the core of the Sun, and the transformation results in a release of energy that keeps the sun hot.
Answer:
Sorry for the delayed response- Right now I don't have time to give you the answer, but I really want to help so I'll try to phrase it in a easier way to understand things: Basically what you need to do for this problem is find the area of the base of the figure (which means length x width) and then you would simply find the volume of by finding the length of each side of the figure, find the length of the figure, find the height of the figure and then find the radius.
Have an amazing day and I hope this can somewhat help :)