Answer:
(a) Calculate the rod base temperature (°C). = 299.86°C
(b) Determine the rod length (mm) for the case where the ratio of the heat transfer from a finite length fin to the heat transfer from a very long fin under the same conditions is 99 percent. = 0.4325m
Explanation:
see attached file below
Explanation:
are bhai brainly aap english me questions kar ne ko hai
ye kon si bhasha hai ??????
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:
Air supplied to a pneumatic system is supplied through the C. Actuator
Explanation
Pneumatic systems are like hydraulic systems, it is just that these systems uses compressed air rather than hydraulic fluid. Pneumatic systems are used widely across the industries. these pneumatic systems needs a constant supply of compressed air to operate. This is provided by an air compressor. The compressor sucks in air at a very high rate from the environment and stores it in a pressurized tank. the Air is supplied thereafter with the help of a actuator valve that is a more sophisticated form of a valve.
From the above statement it is clear that Air supplied to a pneumatic system is supplied through the Actuator
Answer:
Tech B
Explanation:
Horsepower (hp) refers to a unit of measurement of power in respect of the output of engines or motors.
Horsepower is the common unit of power. It indicates the rate at which work is done.
The formula , where rpm is the engine speed, T is the torque, and 5,252 is radians per second.
So,
Tech B is correct