Answer A the more traing the more you will know
Explanation:
Answer:
The final temperature of water is 381.39 °C.
Explanation:
Given that
Mass of water = 5 kg
Heat transfer at constant pressure Q = 2960 KJ
Initial temperature = 240 °C
We know that heat transfer at constant pressure given as follows
We know that for water
Lets take final temperature of water is T
So
T=381.39 °C
So the final temperature of water is 381.39 °C.
Answer:
CARBON
Explanation:
HOPE THIS HELPS SORRY FOR CAPS
Answer:
C
Explanation:
One of the disadvantages of solar cells is that electricity storage systems are not readily available. Excess energy generated by the solar panels are wasted except they are stored by solar batteries for later use. There are various systems for storing electricity from solar cells apart from solar batteries which is the common storage system. An example of another electricity storage system for solar cell is using the water electrolyzer to store solar energy which can be used to later generate hydroelectricity.
Advantages of a solar cell includes Renewable energy, Economy-friendly and environmental-friendly energy and good durability
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: