
Write a function using python syntax (use function name: sortof)that receives two inputs. The first input (data_sorted) is an array of data, where all data values arereal, positive, non-zero numbers sorted from smallest to largest and there are noduplicates. The second input (data_unsorted) is another array of data, where all data values are real, positive, non-zero numbers but stored in the array in any random order(not sorted). Write an

The answer is given in Python along with output and code screenshot
Step by stepSolved in 4 steps with 2 images

- Develop program to read as many test scores as the user wants from the keyboard (assuming at most 50 scores). Print the scores in (1) original order, (2) sorted from high to low (3) the highest score, (4) the lowest score, and (5) the average of the scores. Implement the following functions using the given function prototypes: void displayArray(int array[], int size) - Displays the content of the array void selectionSort(int array[], int size) - sorts the array using the selection sort algorithm in descending order. Hint: refer to example 8-5 in the textbook. int findMax(int array[], int size) - finds and returns the highest element of the array int findMin(int array[], int size) - finds and returns the lowest element of the array double findAvg(int array[], int size) - finds and returns the average of the elements of the array Name your file FirstInitialLastName_CW_8. cpp Submit: Submit flowchart/Algorithm/Pseudocode C++ file (source code): FirstInitialLastName_CW_8.…arrow_forwardWrite a function that takes two inputs: - An array of doubles named data. - A scalar double (single number) named threshold. Your function should have one output: - A double named below. The value of below should be the number of elements in data that have a value less than threshold. Please use MATLABarrow_forwardWrite a program in C write a two-dimension array in the main function that contains different names and grades, then write a function that will ask the user if he wants : Press 1 for print passing students names and grades Press 0 for print failing students names and grades Press 2 for printing all the student's names and grades after that, the function will print what the user wants hint : >= 60 passedarrow_forward
- Help me structure a program in C++ that opens a file for read. Then reads the data in from the file and calculates the sum of the row values. The data is all integers with 7 values per line, and 10 lines of data in the file. The program must use two functions, one to open the file, and another to output and calculate the sum of the row values. All data must be read into a two dimensional array first, then the data is output and the sum calculated. The data should be printed out by row, along with the sum of the row values. Prototypes to be used: void rowSumCalculator( int myArray[][10], int rowCount, int colCount );Function rowSumCalculator( ) writes out the data in the array and the sum of the values in the row. void openFile( ifstream& infile, string prompt );Function openFile should print the prompt out to the user, read in the filename and open the file. If the file does not open, an error is written to the display, and the user prompted again. The function doesnot return until…arrow_forwardWrite a function or script in a programming language of your choice to calculate the convolution of two arrays each with 100 elements. The result will be ?[?] and the input arrays will be ?[?] and ?[?].arrow_forwardWrite a C++ program that fills an integer array of size 10 with numbers. Next, the program fills the second array with the contents of the first array in reverse. Next, the program prints elements of both arrays. In addition, the program finds the minimum element from the first array and the maximum element from the second array. Sample input / output: Enter element (1): 45 Enter element (2): 23 Enter element (3): 16 Enter element (4): 38 Enter element (5): 94 Enter element (6): 75 Enter element (7): 58 Enter element (8): 61 Enter element (9): 80 Enter element (10): 69 Elements of first array: 45 23 16 38 94 75 58 61 80 69 Elements of second array: 69 80 61 58 75 94 38 16 23 45 The minimum element in the first array is: 16 The maximum element in the second array is: 94arrow_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





