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 force must s applied to a wall or roof rafters to add strength and keep the building straight and plumb
Answer:
- <em><u> Land, labor, and capital </u></em>
Explanation:
The <em>factors of production </em>are the resources that are used to produce goods and services.
By definition resources are scarce.
<em>Land</em> includes everything that comes from the land, that can be used as raw material to produce other materials; for instance, water, minerals, wood.
<em>Labor</em> is the work done by anybody, not just at a factory but at any enterpise that produce a good or a service. For instance, the work done by a person in a bank or a restaurant.
<em>Capital</em> is the facilites (buildings), machinery, equipments, tools that the persons use to produce goods or services. For instance, a computer, a chemical reactor, or a pencil.
Nowadays, also entrepreneurship is included as a <em>factor of production</em>, since it is the innovative skill of the entrepeneurs to combine land, labor and capital what permit the production of good and services.
Answer:
6.6 kilo volts = 6.6 k volts
Explanation:
A prefix is a word, number or a letter that is added before another word. In physics we have different prefixes for the exponential powers of 10, that are placed before units in place of those powers. Some examples are:
deci (d) ------ 10⁻¹
centi (c) ------ 10⁻²
milli (m) ------ 10⁻³
kilo (k) ------ 10³
mega (M) ----- 10⁶
giga (G) ------ 10⁹
We have:
6600 volts
converting to exponential form:
=> 6.6 x 10³ volts
Thus, we know that the prefix of kilo (k) is used for 10³.
Hence,
=> <u>6.6 kilo volts = 6.6 k volts</u>