The formula for calculating your BMI is below.

BMI=703weight in pounds(height in inches)2
Which line of code will correctly calculate the BMI? Select 3 options.


bmi = 703 * weight / height ** 2

bmi = 703 * weight / height * height

bmi = (703 * weight) / height ** 2

bmi = 703 * weight / (height * height)

bmi = 703 * weight / height ^ 2

Respuesta :

The first, third, and fourth choices are correct.

Answer:

bmi = 703 * weight / (height * height)

bmi = 703 * weight / height * height

bmi = 703 * weight / height ** 2

or A, C, and D

Explanation:

Correct answer on edge 2020

RELAXING NOICE
Relax