Answer:
The object starts away from the origin and then moves toward the origin at a constant velocity. Next, it stops for one second. Finally, it moves away from the origin at a greater constant velocity.
- Moon's Orbit <u>(C). Earth</u>
- Tides on Earth <u>(B). Moon</u>
- Earth's Orbit <u>(A). Sun</u>
<h3>Introduction</h3>
Hi ! I will help you to explain about gravity. Gravity is one part of the force that will pull two or more objects that interact with each other to the center of their weight. Because it is a force, and interacts with mass, the gravitational force can also cause an acceleration called gravitational acceleration.The characteristic of gravity are:
- Mass cannot be affected by gravitational acceleration, because mass itself has formed gravitational interactions.
- The weight of an object is something that can be affected by the acceleration of gravity, because weight is a derived quantity in Newtons (N)
- The lighter object will fall to the heavier object because the center of mass will be closer to the object with greater mass.
<h2>Explanation</h2>
Let's go into more detail about my answer!
<h3>Moon's Orbit</h3>
The moon undergoes two motions, orbiting the Earth and orbiting the sun together. So, here the gravitational force from the Earth can be said to have more effect on the Moon. Without the influence of Earth's gravity, the moon will orbit the sun itself by the interaction of its own gravitational force with the sun.
<h3>Tides on Earth</h3>
The tides are caused by the Moon's gravitational force. Remember ! The Earth's gravitational force always points downwards to make a constant (so that water does not spill when it is hit by the Moon's gravity). The Moon's gravitational force also depends on how close it is to Earth.
<h3>Earth's Orbit</h3>
Like the Moon, the Earth orbits the sun. However, the sun is now creating a gravitational field. Not only for Earth, but for all objects in the solar system.
<h3>See More</h3>
Answer:Increase
Explanation:
Given
You are holding 2 kg mass in each outstreched hand
If the masses are dropped then Moment of inertia will decease by 
Where m=2 kg
r=length of stretched arm
Since angular momentum is conserved therefore decrease in Moment of inertia will result in increase of angular velocity
as I
=constant
I=Moment of inertia
=angular velocity
Answer:
b
Explanation:
i just answered it and the correct answer is b
Answer:
Explanation:
Its not a good practice to write all the functions including main() in the same class.
But as you opted for this, the code goes here like this:
public class CalcPyramidVolume {
/* Your solution goes here */
static double pyramidVolume(double baseLength, double baseWidth, double pyramidHeight)
{
double Volume,baseArea;
baseArea = baseLength * baseWidth;
Volume = baseArea * pyramidHeight * 1/3;
return Volume;
}
public static void main (String [] args) {
System.out.println("Volume for 1.0, 1.0, 1.0 is: " + pyramidVolume(1.0, 1.0, 1.0));
return;
}
}
And there is not caveat of integer division, as you are declaring all your variables of type double.