117k views
1 vote
Assume that your body mass index (BMI) program calculated a BMI of 20.6. What would be the value of category after this portion of the program was executed?

# Determine the weight category.
if BMI 39.9:
category = "morbidly obese"
elif BMI <= 24.9:
category = "normal"
elif BMI <= 39.9:
category = "overweight"
The value of category will be (normal/overweight/.underweight/morbidly obese)

2 Answers

2 votes

Answer:

normal

Step-by-step explanation:

User Maytham Fahmi
by
4.9k points
3 votes

Answer:

normal is the answer

User Surbhi Aggarwal
by
4.9k points