Math, asked by manishk99kumar, 2 months ago

Which of the following is the correct variable declaration to store a 3 by 3 matrix of
BMI measurements of 9 patients, e.g. 22, 28.2, 23, 26.5, etc?

Answers

Answered by Harikanaidu624
0

Answer:

3 by 3 matrix bmi measurement of 9 patients e.g 22,28.2,23,26.5

Answered by Krish1993
0

Answer:

correct answer is float BMI [3][3]

Step-by-step explanation:

With the metric system, the formula for BMI is weight in kilograms divided by height in meters squared. Since height is commonly measured in centimeters, an alternate calculation formula, dividing the weight in kilograms by the height in centimeters squared, and then multiplying the result by 10,000, can be used.

The formula to calculate BMI is $weight (kg)/{height (m)}^2$. Let's implement this formula in python. Here we will be dividing the height by 100 to convert the centimeters into meters.

Similar questions