Answer:
A) About
newtons
B) 76.518 newtons
C) 111.834 newtons
Explanation:
A)
, where G is the universal gravitational constant, M 1 and 2 are the masses of both objects in kilograms, and r is the radius in meters. Plugging in the given numbers, you get:

B) You can find the weight of each object on Earth because you know the approximate acceleration due to gravity is 9.81m/s^2. Multiplying this by the mass of each object, you get a weight for the first particle of 76.518 newtons.
C) You can do a similar thing to the previous particle and find that its weight is 11.4*9.81=111.834 newtons.
Hope this helps!
Answer:
four seconds
Explanation:
lookin at a vehicle respectively at a second can cause accident
A formal indication from a state, on letterhead, or an official state form, which shows that an applicant has valid driving privileges and is clear to apply for a Colorado driver's license is called a clearance.
<h3>What is a learner's license?</h3>
A learner's license is also referred to as learner's permit and it can be defined as a category of driver's license that is issued to an individual who is learning how to drive an automobile vehicle (car).
<h3>What is a license?</h3>
A license is also referred to as a certificate and it can be defined as an authorization that is typically issued by state governments to a driver, so as to avail him or her the legal ability to physically driver in all the states across a country.
In this scenario, we can infer and logically deduce that a clearance is a formal indication from a state which shows and affirms that an applicant has valid driving privileges, and is permitted to apply for a Colorado driver's license.
Learn more about learner's license here: brainly.com/question/26289148
#SPJ1
Answer:
Define Variables and Use List methods to do the following
Explanation:
#<em>Conjoins two lists together</em>
all_names = male_names.union(female_names)
#<em>Finds the names that appear in both lists, just returns those</em>
neutral_names = male_names.intersection(female_names)
#<em>Returns names that are NOT in both lists</em>
specific_names = male_names.symmetric_difference(female_names)