If i would visit one of my friends it’s c
Answer:
ΔQ = 4930.37 BTu
Explanation:
given data
height h = 8ft
Δt = 8 hours
length L = 24 feet
R value = 16.2 hr⋅°F⋅ft² /Btu
inside temperature t1 = 68°F
outside temperature t2 = 16°F
to find out
number of Btu conducted
solution
we get here number of Btu conducted by this expression that s
......................1
here A is area that is = h × L = 8 × 24 = 1492 ft²
put here value we get
solve it we get
ΔQ = 4930.37 BTu
I think the answer is B. 10D
Answer:
Enthalpy of reaction (kJoules/mole)
Heat of formation of products (kJoules/mole)
Heat of reaction of reactants (kJoules/mole)
Explanation:
The general expression for calculating the overall enthalpy of reaction is given as following:
ΔH = ∑ΔH[producst] - ∑Δ[reactants]
Thus, the heat of reaction is given as the difference between the formation of the products and the formation of the reactants. The units are expressed as kJ/mol of reactants or products.
Thus, the three values are fundamental in the determination of the overall energy of the reaction from Hess' Law.
Answer:
The code is given below in Python with appropriate comments
Explanation:
# convert list to set
male_names = set(['Oliver','Declan','Henry'])
# get remove and add name from user
remove_name = input("Enter remove name: ")
add_name = input("Enter add name: ")
# remove name from set
male_names.remove(remove_name)
# add new name ij set
male_names.add(add_name)
# sort the set
a = sorted(male_names)
# print the set
print(a)