Answer:
road closures on deliver routes.. i think..
Answer:
COP = 0.090
Explanation:
The general formula for COP is:
COP = Desired Output/Required Input
Here,
Desired Output = Heat removed from water while cooling
Desired Output = (Specific Heat of Water)(Mass of Water)(Change in Temperature)/Time
Desired Output = [(4180 J/kg.k)(3.1 kg)(25 - 11)k]/[(12 hr)(3600 sec/hr)]
Desired Output = 4.199 W
And the required input can be given as electrical power:
Required Input = Electrical Power = (Current)(Voltage)
Required Input = (2.9 A)(16 V) = 46.4 W
Therefore:
COP = 4.199 W/46.4 W
<u>COP = 0.090</u>
Answer:
(a) Precipitation hardening
(1) The strengthening mechanism involves the hindering of dislocation motion by precipitates/particles.
(2) The hardening/strengthening effect is not retained at elevated temperatures for this process.
(4) The strength is developed by a heat treatment.
(b) Dispersion strengthening
(1) The strengthening mechanism involves the hindering of dislocation motion by precipitates/particles.
(3) The hardening/strengthening effect is retained at elevated temperatures for this process.
(5) The strength is developed without a heat treatment.
Answer:
Explanation:
class Pet:
def __init__(self):
self.name = ''
self.age = 0
def print_info(self):
print('Pet Information:')
print(' Name:', self.name)
print(' Age:', self.age)
class Dog(Pet):
def __init__(self):
Pet.__init__(self)
self.breed = ''
def main():
my_pet = Pet()
my_dog = Dog()
pet_name = input()
pet_age = int(input())
dog_name = input()
dog_age = int(input())
dog_breed = input()
my_pet.name = pet_name
my_pet.age = pet_age
my_pet.print_info()
my_dog.name = dog_name
my_dog.age = dog_age
my_dog.breed = dog_breed
my_dog.print_info()
print(' Breed:', my_dog.breed)
main()