HenryLez HenryLez 27-10-2020 Computers and Technology contestada 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