Answer:
the saturated density should be
Explanation:
When an object has the same number of positive and negative charges, its electrical charge will become neutral.
What is an electric charge?
When the matter is put in an electromagnetic field, it has an electric charge, which causes it to experience a force. A positive or negative electric charge can exist.
Now when the two equal magnitude charges with opposite natures come together they become neutral.
To know more about charges follow
brainly.com/question/24391667
#SPJ4
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:
Following the ways of dealing with incomplete questions, i was able to get the complete question, please look at the attachment for ans.