Answer:
Yes
Explanation:
As we know that heat transfer take place from high temperature body to low temperature body.
In the given problem ,the temperature of the air is high as compare to the temperature of can of bear ,so the heat transfer will take place from air to can of bear and at the last stage when temperature of can of bear will become to the temperature of air then heat transfer will be stop.Because temperature of the both body will become at the same and this stage is called thermal equilibrium.
So an office worker claim is correct.
Explanation:
I think it helps you
I don't know the answer sorry
Answer:
Using python
num_boys = int(input("Enter number of boys :"))
num_girls = int(input("Enter number of girls :"))
budget = int(input("Enter the number of dollars spent per school year :"))
try:
dollarperstudent = budget/(num_boys+num_girls)
print("Dollar spent per student : "+str(dollarperstudent))#final result
except ZeroDivisionError:
print("unavailable")