Answer:
Explanation:
Products of oil in our everyday life:
(1) Petro-Chemical Feedstock: These are by product of Refining of Oil which it is used extensively to make PET bottles, Paints, Polyester Shirts, Pocket combs e.t.c
(2) Asphalt : Used extensively to make Motor Road, highways
(3) Plastics : we use plastics in our everyday life, this is also a product of Refining of crude oil e.g PVC, Telephone casing, Tapes e.t.c
(4) Lubricating Oil/Grease : This is another product from crude oil Fractional Distillation.
(5) Propane/ Cooking Gas: This is also a product from oil which is used in our everyday life for cooking, grilling etc.
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:
the elevation at point X is 2152.72 ft
Explanation:
given data
elev = 2156.77 ft
BS = 2.67 ft
FS = 6.72 ft
solution
first we get here height of instrument that is
H.I = elev + BS ..............1
put here value
H.I = 2156.77 ft + 2.67 ft
H.I = 2159.44 ft
and
Elevation at point (x) will be
point (x) = H.I - FS .............2
point (x) = 2159.44 ft - 6.72 ft
point (x) = 2152.72 ft
Answer:
See explanation
Explanation:
Solution:-
- The shell and tube heat exchanger are designated by the order of tube and shell passes.
- A single tube pass: The fluid enters from inlet, exchange of heat, the fluid exits.
- A multiple tube pass: The fluid enters from inlet, exchange of heat, U bend of the fluid, exchange of heat, .... ( nth order of pass ), and then exits.
- By increasing the number of passes we have increased the "retention time" of a specific volume of tube fluid; hence, providing sufficient time for the fluid to exchange heat with the shell fluid.
- By making more U-turns we are allowing greater length for the fluid flow to develop with " constriction and turns " into turbulence. This turbulence usually at the final passes allows mixing of fluid and increases the heat transfer coefficient by:
U ∝ v^( 0.8 ) .... ( turbulence )
- The higher the velocity of the fluids the greater the heat transfer coefficient. The increase in the heat transfer coefficient will allow less heat energy carried by either of the fluids to be wasted ; hence, reduced losses.
Thereby, increases the thermal efficiency of the heat exchanger ( higher NTU units ).
Here’s some of them
6. J
7. I
10. O
13. F
14. E
15. N