Answer:
be like good
Explanation:
maybe rubber like so you don't slip
The reason why giant stars become planetary nebulas is Supergiant stars do not have enough mass to generate the gravity necessary to cause a planetary nebula.
<h3>Why do giant stars become planetary nebulae?</h3>
A planetary nebula is known to be formed or created by a dying star. A red giant is known to be unstable and thus emit pulses of gas that is said to form a sphere around the dying star and thus they are said to be ionized by the ultraviolet radiation that the star is known to releases.
Learn more about giant stars from
brainly.com/question/27111741
#SPJ1
This question is incomplete, the complete question is;
For a steel alloy it has been determined that a carburizing heat treatment of 11.3 h duration at Temperature T1 will raise the carbon concentration to 0.44 wt% at a point 1.8 mm from the surface. A separate experiment is performed at T2 that doubles the diffusion coefficient for carbon in steel.
Estimate the time necessary to achieve the same concentration at a 4.9 mm position for an identical steel and at the same carburizing temperature T2.
Answer:
the required time to achieve the same concentration at a 4.9 is 83.733 hrs
Explanation:
Given the data in the question;
treatment time t₁ = 11.3 hours
Carbon concentration = 0.444 wt%
thickness at surface x₁ = 1.8 mm = 0.0018 m
thickness at identical steel x₂ = 4.9 mm = 0.0049 m
Now, Using Fick's second law inform of diffusion
/ Dt = constant
where D is constant
then
/ t = constant
/ t₁ =
/ t₂
t₂ = t₁
t₂ = t₁
/ ![x^2_1](https://tex.z-dn.net/?f=x%5E2_1)
t₂ = (
/
)t₁
t₂ =
/
× t₁
so we substitute
t₂ =
0.0049 / 0.0018
× 11.3 hrs
t₂ = 7.41 × 11.3 hrs
t₂ = 83.733 hrs
Therefore, the required time to achieve the same concentration at a 4.9 is 83.733 hrs
Answer:
Complete question is:
write the following decorators and apply them to a single function (applying multiple decorators to a single function):
1. The first decorator is called strong and has an inner function called wrapper. The purpose of this decorator is to add the html tags of <strong> and </strong> to the argument of the decorator. The return value of the wrapper should look like: return “<strong>” + func() + “</strong>”
2. The decorator will return the wrapper per usual.
3. The second decorator is called emphasis and has an inner function called wrapper. The purpose of this decorator is to add the html tags of <em> and </em> to the argument of the decorator similar to step 1. The return value of the wrapper should look like: return “<em>” + func() + “</em>.
4. Use the greetings() function in problem 1 as the decorated function that simply prints “Hello”.
5. Apply both decorators (by @ operator to greetings()).
6. Invoke the greetings() function and capture the result.
Code :
def strong_decorator(func):
def func_wrapper(name):
return "<strong>{0}</strong>".format(func(name))
return func_wrapper
def em_decorator(func):
def func_wrapper(name):
return "<em>{0}</em>".format(func(name))
return func_wrapper
@strong_decorator
@em_decorator
def Greetings(name):
return "{0}".format(name)
print(Greetings("Hello"))
Explanation: