Answer:
6.99 x 10⁻³ m³ / s
Explanation:
Th e pressure difference at the two ends of the delivery pipe due to atmospheric pressure and water column will cause flow of water.
h = difference in the height of water column at two ends of delivery pipe
6 - 1 = 5 m
Velocity of flow of water
v = √2gh
= √ (2 x 9.8 x 5)
= 9.9 m /s
Volume of water flowing per unit time
velocity x cross sectional area
= 9.9 x 3.14 x .015²
= 6.99 x 10⁻³ m³ / s
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:
- Moisture/ water content w = 26%
Explanation:
- Initial mass of saturated soil w1 = mass of soil - weight of container
= 113.27 g - 49.31 g = 63.96 g
- Final mass of soil after oven w2 = mass of soil - weight of container
= 100.06 g - 49.31 g = 50.75
Moisture /water content, w =
=
= 0.26 = 26%
Void ratio = water content X specific gravity of solid
= 0.26 X 2.80 =0.728
Answer: The rate of heat transfer decreases.
Explanation:
Fin effectiveness is defined as the ratio of heat transfer rate from a finned surface to the heat transfer rate from the same surface if there were no fins. Its value is expected to be greater than 1.
Having effectiveness value of 0.9 which is less than 1 indicates that the heat transfer rate will decrease since a fin effectiveness smaller than 1 shows that the fin acts as insulation (thermal insulation).