which part of the input - process - output model is line 2 in the program below?\nstrweight = input(\enter…

which part of the input - process - output model is line 2 in the program below?\nstrweight = input(\enter your weight in pounds: \) # line 1\nweight = float(strweight) # line 2\nprint(weight) # line 3\noutput\ninput\nprocess\nplanning

which part of the input - process - output model is line 2 in the program below?\nstrweight = input(\enter your weight in pounds: \) # line 1\nweight = float(strweight) # line 2\nprint(weight) # line 3\noutput\ninput\nprocess\nplanning

Answer

Brief Explanations:

In the input - process - output model, input is getting data from the user, output is presenting results, and process is transforming input data. Line 2 converts the string input (from line 1) into a floating - point number, which is a data transformation operation.

Answer:

C. process