Answer:
The net amount of energy change of the air in the room during a 10-min period is 120 KJ.
Explanation:
Given that
Heat loss from room (Q)= 60 KJ/min
Work supplied to the room(W) = 1.2 KW = 1.2 KJ/s
We know that 1 W = 1 J/s
Sign convention for heat and work:
1. If heat is added to the system then it is taken as positive and if heat is rejected from the system then it is taken as negative.
2. If work is done by the system then it is taken as positive and if work is done on the system then it is taken as negative.
So
Q = -60 KJ/min
In 10 min Q = -600 KJ
W = -1.2 KJ/s
We know that
1 min = 60 s
10 min = 600 s
So W = -1.2 x 600 KJ
W = -720 KJ
WE know that ,first law of thermodynamics
Q = W + ΔU
-600 = - 720 + ΔU
ΔU = 120 KJ
The net amount of energy change of the air in the room during a 10-min period is 120 KJ.
A boy eat a energy of a sandwich to run a race because when they eat a sandwich it helps them to help it mid workout and real nutritions of NYC and bring extra fuel and eating the right thing
I hope this help
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 theoretical maximum specific gravity at 6.5% binder content is 2.44.
Explanation:
Given the specific gravity at 5.0 % binder content 2.495
Therefore
95 % mix + 5 % binder gives S.G. = 2.495
Where the binder is S.G. = 1, Therefore
Per 100 mass unit we have (Mx + 5)/(Vx + 5) = 2.495
(95 +5)/(Vx +5) = 2.495
2.495 × (Vx + 5) = 100
Vx =35.08 to 95
Or density of mix = Mx/Vx = 95/35.08 = 2.7081
Therefore when we have 6.5 % binder content, we get
Per 100 mass unit
93.5 Mass unit of Mx has a volume of
Mass/Density = 93.5/2.7081 = 34.526 volume units
Therefore we have
At 6.5 % binder content.
(100 mass unit)/(34.526 + 6.5) = 2.44
The theoretical maximum specific gravity at 6.5% binder content = 2.44.
Answer:
True
Explanation:
Tensile testing which is also referred to as tension testing is a process which materials are subjected to so as to know how well it can be stretched before it reaches breaking point. Hence, the statement in the question is true