Question: This code needs to run with Raptor You need to write a program that will load an array of test scores and then determine the
This code needs to run with Raptor
You need to write a program that will load an array of test scores and then determine the average score, highest and lowest scores. You have declared the array to handle only those values that are of the float data type. The following line of code declares the array:
TestScores = [95.75, 85.0, 65.5, 88.25, 77.0]
Which of the following snippets of code are allowed to manipulate the TestScores array?
| TestScores[7] = 90 |
| TestScores[3] = 89 |
| TestScores[-1] = 86 |
| TestScores[2] = "ninety-nine" |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
