Answer:
Heat required =7126.58 Btu.
Explanation:
Given that
Mass m=20 lb
We know that
1 lb =0.45 kg
So 20 lb=9 kg
m=9 kg
Ice at -15° F and we have to covert it at 200° F.
First ice will take sensible heat at up to 32 F then it will take latent heat at constant temperature and temperature will remain 32 F.After that it will convert in water and water will take sensible heat and reach at 200 F.
We know that
Specific heat for ice 
Latent heat for ice H=336 KJ/kg
Specific heat for ice 
We know that sensible heat given as

Heat for -15F to 32 F:


Q=858.69 KJ
Heat for 32 Fto 200 F:


Q=6330.74 KJ
Total heat=858.69 + 336 +6330.74 KJ
Total heat=7525.43 KJ
We know that 1 KJ=0.947 Btu
So 7525.43 KJ=7126.58 Btu
So heat required to covert ice into water is 7126.58 Btu.
Answer: The correct answer is : Fault block mountain with rough edges and steep cliffs
Explanation: Snowy saws are an example of a mountain chain blocked by faults. The snowy mountains were formed because the tectonic movement forced some segments of the earth's crust up into irregular pieces and others down.
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:
1700kJ/h.K
944.4kJ/h.R
944.4kJ/h.°F
Explanation:
Conversions for different temperature units are below:
1K = 1°C + 273K
1R = T(K) * 1.8
= (1°C + 273) * 1.8
1°F = (1°C * 1.8) + 32
Q/delta T = 1700kJ/h.°C
T (K) = 1700kJ/h.°C
= 1700kJ/K
T (R) = 1700kJ/h.°C
= 1700kJ/h.°C * 1°C/1.8R
= 944.4kJ/h.R
T (°F) = 1700kJ/h.°C
= 1700kJ/h.°C * 1°C/1.8°F
= 944.4kJ/h.°F
Note that arithmetic operations like subtraction and addition of values do not change or affect the value of a change in temperature (delta T) hence, the arithmetic operations are not reflected in the conversion. Illustration: 5°C - 3°C
= 2°C
(273+5) - (273+3)
= 2 K
The resources and instructions that should be used for the procedures of performing PMCS are:
- Operator's manuals
- Safety cautions and warnings.
- Fording kit
- Heating and cooling systems.
<h3>What is PMCS?</h3>
PMCS is an acronym for preventive maintenance checks and services and it can be defined as the maintenance, checks, and services that are typically performed before, during, and after the use of any type of military equipment such as:
Basically, the resources and instructions that should be used for the procedures of performing PMCS are:
- Operator's manuals
- Safety cautions and warnings.
- Fording kit
- Heating and cooling systems.
Read more on PMCS here: brainly.com/question/15720250
#SPJ1