Four because 90+90+90+90 = 360, which is the angle f a circle
Answer:8
Step-by-step explanation:
The equation for a triangle is base times height times 1/2 so if 8 times 6 gives you 48 once you divide it by two it gives you 24
Answer:
The program in Python is as follows:
age = int(input("Age: "))
if age>=13 and age <=19:
print("Teenager")
else:
print("Not a teenager")
Step-by-step explanation:
This gets input for age
age = int(input("Age: "))
This checks if age is between 13 and 19 (inclusive)
if age>=13 and age <=19:
If yes, the age is teenage
print("Teenager")
If otherwise, the age is not teenage
else:
print("Not a teenager")
They are both an average calculation to the nearest whole number.