Answer:
100 or so atoms of the periodic table, in different combinations, make up <u>Compounds</u>.
Explanation:
Atoms from different element in the periodic table combined together with the help of bond and make a new product that is called compound.
<u>For example</u>
Hydrogen and oxygen are the elements of the periodic table. When one atom of oxygen and two atoms of hydrogen are combined together, a compound will be formed named as water (H20).
In another example, two atoms of oxygen and one atom of carbon combines toghther through chemical reaction and make compund named as Carbon dioxide (CO2).
Answer:
cool math if its not blocked
Explanation:
Answer:
the answer is ;gabriel picked the wrong tab.he needs to select the insert tab ,not the formulas tab to select watch window
Answer:
In Python:
def print_volume (r):
volume = 4/3 * 3.142*r**3
print(volume)
print_volume(7)
print_volume(14)
print_volume(22)
Explanation:
This defines the function and takes radius r as the parameter
def print_volume (r):
This calculates the volume
volume = 4/3 * 3.142*r**3
This prints the volume
print(volume)
The next three lines call the function with different values
<em>print_volume(7)</em>
<em>print_volume(14)</em>
<em>print_volume(22)</em>