Answer:
percentage change in volume is 2.60%
water level rise is 4.138 mm
Explanation:
given data
volume of water V = 500 L
temperature T1 = 20°C
temperature T2 = 80°C
vat diameter = 2 m
to find out
percentage change in volume and how much water level rise
solution
we will apply here bulk modulus equation that is ratio of change in pressure to rate of change of volume to change of pressure
and we know that is also in term of change in density also
so
E =
................1
And
............2
here ρ is density
and we know ρ for 20°C = 998 kg/m³
and ρ for 80°C = 972 kg/m³
so from equation 2 put all value


dV = 0.0130 m³
so now % change in volume will be
dV % =
× 100
dV % =
× 100
dV % = 2.60 %
so percentage change in volume is 2.60%
and
initial volume v1 =
................3
final volume v2 =
................4
now from equation 3 and 4 , subtract v1 by v2
v2 - v1 =
dV =
put here all value
0.0130 =
dl = 0.004138 m
so water level rise is 4.138 mm
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()
Answer:
A) True
Explanation:
Yes this is true when length is creases the heat transfer coefficient decease with length.
The heat transfer(h) coefficient is varying with x by given expression
For Laminar flow

For turbulent flow

But when flow is in transitional state the heat heat transfer(h) coefficient is increases with x.But for laminar as well as turbulent flow h is decrease when x increases.