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:
for 1st question the answer is 5th option.
for 2nd question the answer is 2nd option
hope it helps you mate
please mark me as brainliast
Answer:
180 x 60 inches
Width = 60 inches
Length = 180 inches
Explanation:
Given
Let L = Length
W = Width
P = Perimeter
Length = 3 * Width
L = 3W
Perimeter of Brass = 480 inches
P = 480
Perimeter is given as 2(L + W);
So, 2 (L + W) = 480
L + W = 480/2
L + W = 240
Substitute 3W for L; so,
3W + W = 240
4W = 240
W = 240/4
W = 60 inches
L = 3W
L = 3 * 60
L = 180 inches
Answer:
a) the power consumption of the LEDs is 0.25 watt
b) the LEDs drew 0.0555 Amp current
Explanation:
Given the data in the question;
Three AAA Batteries;
<---- 1000mAh [ + -] 1.5 v ------1000mAh [ + -] 1.5 v --------1000mAh [ + -] 1.5 v------
so V_total = 3 × 1.5 = 4.5V
a) the power consumption of the LEDs
I_battery = 1000 mAh / 18hrs { for 18 hrs}
I_battery = 1/18 Amp { delivery by battery}
so consumption by led = I × V_total
we substitute
⇒ 1/18 × 4.5
P = 0.25 watt
Therefore the power consumption of the LEDs is 0.25 watt
b) How much current do the LEDs draw
I_Draw = I_battery = 1/18 Amp = 0.0555 Amp
Therefore the LEDs drew 0.0555 Amp current