High School

Assign the row array `weightKilo` with the corresponding weights in kilograms. Use the following conversion: kg = lb / 2.2.

```plaintext
Function WeightKilo = ConvertToKilo(weightPounds)

weightPounds = [100, 190, 163, 211, 20, 25, 30, 35];

weightKilo = weightPounds / 2.2;
```

Answer :

You can convert the weight from pounds to kilograms by dividing the weight in pounds by 2.2. By using a loop, you can convert each weight in the [tex]weight_p_o_u_n_d_s[/tex] array and store the converted weights in the [tex]weight_k_i_l_o[/tex]array.

To convert the weight from pounds to kilograms, you can use the formula kg = lb / 2.2.
Given the weight in pounds as [tex]weight_p_o_u_n_d_s[/tex]= [100, 190, 163, 211], you can assign the corresponding weight in kilograms to the row array [tex]weight_k_i_l_o[/tex].
Here's how you can do it step by step:

1. Declare the weight in pounds as [tex]weight_p_o_u_n_d_s[/tex]= [100, 190, 163, 211].
2. Create a new row array called [tex]weight_k_i_l_o[/tex] to store the weights in kilograms.
3. Iterate over each weight in the [tex]weight_p_o_u_n_d_s[/tex] array.
4. For each weight, divide it by 2.2 to convert it to kilograms.
5. Assign the converted weight to the corresponding index in the [tex]weight_k_i_l_o[/tex] array.
6. After iterating over all the weights, the weight_kilo array will contain the converted weights in kilograms.
For example, if [tex]weight_p_o_u_n_d_s[/tex] = [100, 190, 163, 211], the [tex]weight_k_i_l_o[/tex] array will be [45.45, 86.36, 74.09, 95.91].

To know more about index visit:

https://brainly.com/question/32235606

#SPJ11