The formula for calculating your BMI is below.
weight in pounds
BMI = 703
(height in inches)
Which line of code will correctly calculate the BMI? Select 3 options.
obmi = (703 * weight) /height ** 2
✓ bmi = 703 * weight/ height" height
bmi = 703 * weight/ (height* height)
bmi = 703 * weight/height2
O bmi = 703 * weight/ height** 2