348,685 views
3 votes
3 votes
Assume that your body mass index (BMI) program calculated a BMI of 25.1. What would be the value of

category after this portion of the program was executed?
# Determine the weight category.
if BMI < 18.5:
category= "underweight"
elif BMI > 39.9:
category= "morbidly obese"
elif BMI <= 24.9:
category= "normal"
elif BMI <= 39.9:
category= "overweight"
01:52:46
The value of category will be

User Belkys
by
2.7k points

1 Answer

21 votes
21 votes

Answer: overweight

Explanation: I found it on an educational site

User Paulina
by
2.8k points