Explanation:
Let solve the program using Java programming language
Method: method means group of statements to perform some operation.
let call the method sum.
Parameters: list of variables that are use in the method for declaration.
<u>The code</u>
public int sum (int number)
int answer;
if (number == 1)
answer = number;
else
{
int half = number/2;
int span = number - half;
answer = sum(half) + sum(span) + (half * span);
}
answer result;
}
Firstly we defined the method called sum(), the method takes only one parameter which is number and return the answer(sum of the integers 1 and N).
if the number is equal to 1, so it will return the number and if the number is not equal to 1 it will divide the number by 2 and get the span(span used to shift upper range).And result will add sum of half, sum of span and product of half span.
Answer:
T2 = 1680,4 days
Explanation:
Kepplers law:

For Earth:
T1 = 365 days ; a1 = 149 597 870 700 m
For Ceres:
T2 = ? days ; a1 = 
Then:

Replacing values:
T2 = 1680,4 days
Answer:
Suppose the micrometeoroid weighed 1 g = .001 kg
Suppose also the spacecraft were moving at 18,000 mph (1.5 hrs per rev)
Usually, the smaller particle would be moving but for simplicity suppose that it were stationary wrt the ground
v = 18000 miles / hr * 1500 m/mile / 3600 sec/hr = 7500 m/s
KE = 1/2 * .001 kg * (7500 m)^2 = 28,125 Joules
One can see that 28000 Joules could be damaging amount of energy
Answer: Formula for Acceleration Due to Gravity
These two laws lead to the most useful form of the formula for calculating acceleration due to gravity: g = G*M/R^2, where g is the acceleration due to gravity, G is the universal gravitational constant, M is mass, and R is distance.please mark as brainliest
Explanation: