Answer:
<u><em>To answer this question we assumed that the area units and the thickness units are given in inches.</em></u>
The number of atoms of lead required is 1.73x10²³.
Explanation:
To find the number of atoms of lead we need to find first the volume of the plate:

<u>Where</u>:
A: is the surface area = 160
t: is the thickness = 0.002
<u><em>Assuming that the units given above are in inches we proceed to calculate the volume: </em></u>
Now, using the density we can find the mass:

Finally, with the Avogadros number (
) and with the atomic mass (A) we can find the number of atoms (N):
Hence, the number of atoms of lead required is 1.73x10²³.
I hope it helps you!
Answer:
0.4 gallons per second
Explanation:
A function shows the relationship between an independent variable and a dependent variable.
The independent variable (x values) are input variables i.e. they don't depend on other variables while the dependent variable (y values) are output variables i.e. they depend on other variables.
The rate of change or slope or constant of proportionality is the ratio of the dependent variable (y value) to the independent variable (x value).
Given that the garden hose fills a 2-gallon bucket in 5 seconds. The dependent variable = g = number of gallons, the independent variable = t = number of seconds.
Constant of proportionality = g / t = 2 / 5 = 0.4 gallons per second
Energy efficiency simply means using less energy to perform the same task – that is, eliminating energy waste. ... There are enormous opportunities for efficiency improvements in every sector of the economy, whether it is buildings, transportation, industry, or energy generation.
Answer:
# string_contains function is defined with input_string
# as arguments
def string_contains(input_string):
# if-statement that check if letter z is in input_string
if 'z' in input_string:
# it print"has the letter z" if it has z
print("has the letter z")
else:
# else it print "not worthwhile"
print("not worthwhile")
# string_contains function is called
string_contains("The animal is zebra")
string_contains("learning is fun")
Explanation:
The code is written in Python and well commented.
Image of the output when the function is called is attached.