Answer:
(A) Maximum voltage will be equal to 333.194 volt
(B) Current will be leading by an angle 54.70
Explanation:
We have given maximum current in the circuit 
Inductance of the inductor 
Capacitance 
Frequency is given f = 44 Hz
Resistance R = 500 ohm
Inductive reactance will be 
Capacitive reactance will be equal to 
Impedance of the circuit will be 
So maximum voltage will be 
(B) Phase difference will be given as 
So current will be leading by an angle 54.70
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:
Friction losses in pipes can be reduced by decreasing the length of the pipes, reducing the surface roughness of the pipes, and increasing the pipe diameter. Thus, options (c),(e), and (f) hold correct answers.
Friction loss is a measure of the amount of energy a piping system loses because flowing fluids meet resistance. As fluids flow through the pipes, they carry energy with them. Unfortunately, whenever there is resistance to the flow rate, it diverts fluids, and energy escapes. These opposing forces result in friction loss in pipes.
Friction loss in pipes can decrease the efficiency of the functions of pipes. These are a few ways by which friction loss in pipes can be reduced and the efficiency of the piping system can be boosted:
- <u><em>Decrease the length of the pipes</em></u>: By decreasing pipe lengths and avoiding the use of sharp turns, fittings, and tees, whenever possible result in a more natural path for fluids to flow.
- <u><em>Reduce the surface roughness of the pipes</em></u>: By reducing the interior surface roughness of pipes, a smooth and clearer path is provided for liquids to flow.
- <u><em>Increase the pipe diameter: </em></u>By widening the diameters of pipes, it is ensured that fluids squeeze through pipes easily.
You can learn more about friction losses at
brainly.com/question/13348561
#SPJ4