
In Python: Write a program that reads two sets of exam scores of five students from user input and stores the scores into two NumPy arrays (exam1 and exam2). The program then calculates the average of the two exams for each of the five students and outputs the average scores as a NumPy array. The program finally counts the number of average scores that are 80 or higher and outputs the count.
Ex: If the input of the two sets of scores are:
75 80 65 82 92 88 85 75 95 73
where [75 80 65 82 92] is stored in NumPy array exam1, and [88 85 75 95 73] is stored in NumPy array exam2. The program then outputs:
Average scores: [81.5 82.5 70. 88.5 82.5] Number of students who received 80 and above: 4

Trending nowThis is a popular solution!
Step by stepSolved in 4 steps with 2 images

- Programing in C Write a program that calculates the average grade of a class. 1. You should ask the user how many students you have (you will use this number to set up the length of your array of decimals). 2. Once you have your array, you will have to ask the user for all the grades (there should only be one grade per student). Using a while loop. 3. While you are scanning the grades, you should check if the inputted grade is in the range 0.0 to 10.0 (inclusive). If the grade is not in this range, you should display a message to the user and assign 0.0 to the grade. 4. Once your array is populated with all student's grades, print out the values of the array, so that the user knows these values were saved correctly (use a while loop as well). 5. After this calculate the average (add up all grades and divide by the number of students). Hint: You will need a loop to do so; please use a while loop as well. Example: How many students are in your class? 8 Please input the grades: 8.5 9.8…arrow_forwardC++: Two-dimensional array. which you ask the user to give you a number of rows and the number of columns. and then you define a two-dimensional array. then your program will print the multiplication table according to the numbers that the user gave. your multiplication is the following: 1 2 3 4 1 1 2 3 4 2 2 4 6 8 3 3 6 9 12arrow_forwardTrue or False When two equal-length Python arrays are added, the result is an array that has the same length as each of the input arrays.arrow_forward
- This is an computer programming question The code should be on C++ language Jason is preparing for an upcoming marathon. Each day of the week, he run a certain number of miles and write them into a notebook. At the end of the week, he would like to know the number of miles run each day, the total miles for a week, and average miles for a week. Write a program to help him analyze their data. Your program must contain a two-dimensional array of four rows and seven columns to store the number of miles run each day. Furthermore, your program must contain at least the following functions: a function to read and store the numbers of miles run each day; a function to find the total miles run and the average number of miles run for each week; and a function to output the results.arrow_forwardc++arrow_forwardPlease write in carrow_forward
- A palindrome is a word that is spelled the same way both forwards and backwards. For example, the word, 'racecar' is a palindrome. Using character arrays, write a c++ program that prompts the user to enter a word from the keyboard and informs the user whether the word is a palindrome or not.arrow_forwardWrite a C# program that will generate a 1000000 element integer array and fill the array with random numbers between 1 and 10000 (inclusive). Your program should then ask the user to enter an integer and search the array for the integer the user entered and output all the locations (subscripts) at which the array contains the number. (See below for some tips on random numbers).arrow_forwardIn C++: Write a program which will prompt the user to enter an array of 12 characters. The program should then print the array, and then print the array again, but this time as a 4 colums by 3 rows array.arrow_forward
- Write a function which solves a projectile problem. As input, the function will take the initial height (y0) from which the projectile is launched, the initial velocity, and the angle in degrees which the initial velocity makes with the horizontal (positive if above the horizontal, negative if below the horizontal). The function should calculate the time T the projectile stays in air, generate a time array (0, T/100, 2T/100, 3T/100, …, T), and return the values of x and y (the components of the position vector of the projectile) at the times in the array. Plot the projectile trajectory using matplotlib. Use phyton languagearrow_forwardUsing C++ Language In this program, you will write a program that uses a function to compute the maximum value in a randomly generated array of integers. Inside your main function, declare an array of size 10. Using a suitable loop, generate seeded randomly generated numbers between 50 and 100 inclusive. Display the randomly generated numbers using a suitable message. Call a function that returns the maximum value of the array. You will need to pass this array to a function. The function does not need to modify the array, hence pass it as a constant array. Use a global constant for the size of the array. You must display the maximum value of the array in the main function.arrow_forwardWrite a C# program that creates an integer array of size 10 and fills the array with numbers set by the programmer (not entered by the user). Then, the program will create two arrays, one of them contains only the odd values of the original array, and the other contains the even values. Note that the size of the newly created arrays should be equal to the number of elements in the array. For example, if the original array contains three odd values, the size of the array that contains the odd values should be equal to three.arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





