The answer & explanation for this question is given in the attachment below.
Answer:
As many variables as we can coherently communicate in 2 dimensions
Explanation:
Visualization is a descriptive analytical technique that enables people to see trends and dependencies of data with the aid of graphical information tools. Some of the examples of visualization techniques are pie charts, graphs, bar charts, maps, scatter plots, correlation matrices etc.
When we utilize a visualization on paper/screen, that visualization is limited to exploring as many variables as we can coherently communicate in 2-dimensions (2D).
Answer:
Newton per square meter (N/m2)
Explanation:
Required
Unit of ultimate tensile strength
Ultimate tensile strength (U) is calculated using:
![U = \frac{Ultimate\ Force}{Area}](https://tex.z-dn.net/?f=U%20%3D%20%5Cfrac%7BUltimate%5C%20Force%7D%7BArea%7D)
The units of force is N (Newton) and the unit of Area is m^2
So, we have:
![U = \frac{N}{m^2}](https://tex.z-dn.net/?f=U%20%3D%20%5Cfrac%7BN%7D%7Bm%5E2%7D)
or
![U = N/m^2](https://tex.z-dn.net/?f=U%20%3D%20N%2Fm%5E2)
<em>Hence: (c) is correct</em>
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:
Answer:
Evaporator,Compressor,Condensor ,Expanding valve
Explanation:
Split air conditioning :
Split air conditioning means that, condensor unit or some time called outdoor unit is split from evaporator.It means that evaporator and condensor are placed at some distance.
The four component of split air conditioning system are as follows
1.Evaporator
It absorb heat from room and produces the cooling effect.
2.Compressor
It compresses the refrigerant which exits from evaporator.
3.Condensor
It rejects the heat and cool the evaporator.
4.Expanding valve
It allows to refrigerant to cool up to evaporator pressure.