Answer:
Explanation:
Small-angle grain boundaries are not as effective in interfering with the slip process as are high-angle grain boundaries because there is not as much crystallographic misalignment in the grain boundary region for small-angle, and therefore not as much change in slip direction.
Low angle grain boundaries (quasi-coherent) are formed by the dislocation network positioned along the geometric plane with small tilt angle differences between successive peers that is tilt boundary made up edge dislocations therefore it may only divert the slip direction of the incoming gliding dislocation with very little frictional stresses. And on the other hand, a high angle grain boundary region because of their disordered almost liquid like structure which acts as a strong barrier against dislocation slip motion and causes actually formation of dislocations file-up against it by arresting their motion unless that the stress concentration at the leading dislocation becomes high enough to go though the barrier.
Answer:
See explaination
Explanation:
Please kindly check attachment for the step by step solution of the given problem.
Answer:
A selective medium, a differential medium, and a complex medium.
Explanation:
A selective media is a microbiological media which only support the growth of a particular specie or types of species of microorganisms,this media acts in such a way to inhibit or hinder the growth of other microorganisms.
Differential media are media that acts to Identifying particular strains of microorganisms of similar species.
Complex media are media used for the growth of microorganisms this which contains complex or a wide range of nutrients with chemical composition which may be difficult to determine.
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: