
Please use java
Write a multithreaded program (using pthread in Linux) that calculates
various statistics values for a list of numbers. This program will be passed a series of numbers on the command line and will then create two separate worker threads. One thread will determine the sum of the numbers, the second will determine the product of the numbers of the input.
Alternatively, you may create an array of numbers in your program instead of getting input from users. This method may be simpler to implement. We focus our effort on thread creation, not
The variables representing the sum and average values will be stored globally. The worker
threads will set these values, and the parent thread will output the values once the workers
have exited.
For example, suppose your program is passed the integers 22 7 9 62 8 11 3
The program will report
The sum value is 122
The average is 17.429

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

- This is a part of my code where it converts a binary to a decimal. The constructor should take a String parameter, and convert that to an int array. The ConvertBinToDec should then take the int array and convert it to decimal. The other picture is part of the main, where user inputs the string. The code is not working and giving an error of Exception in thread "main" java.long.NullPointerException. Please tell me how can I solve this. The user should input a binary such as "111" and the decimal value that should be printed is 7. public Binary(String binS) {String[] t = binS.split("");for (int i = 0; i < t.length; i++) {bin[i] = Integer.parseInt(t[i]);}}public int getDec() {convertBinToDec(bin);return dec;}// convert the bin array to decimal valueprivate int convertBinToDec(int[] bin) {int num = 1;for(int i = bin.length - 1; i >= 0; i-- ) {if (bin[i] == 1) {dec += num;}num = num * 2;}return 0;} Main: System.out.print("Enter binary:");String line = keyboardInput.next();Binary b2 =…arrow_forwardWrite a program that meets the followingrequirements:■■ Get an audio file from the class directory using AudioClip.■■ Place three buttons labeled Play, Loop, and Stop, as shown in Figure .■■ If you click the Play button, the audio file is played once. If you click the Loopbutton, the audio file keeps playing repeatedly. If you click the Stop button,the playing stops.arrow_forwardWrite a program RURottenTomatoes.java that creates a 2 dimensional integer array of movie ratings from the command line arguments and displays the index of the movie that has the highest sum of ratings. Ratings range from 1 to 5 (inclusive). The rows of the 2D array correspond to movie reviewers and the columns of the 2D array correspond to movies. The reviewer at index 2 gave movie at index 0 a rating of 4. Take a look at the following example for an explanation on the command line arguments sequenc. The first argument corresponds to the number of reviewers and the second argument corresponds to the number of movies (the dimensions of the 2D integer array). Following are the movie ratings in a row-major order. This means that the first row is filled first, then the second row, etc. In the example above there are 3 reviewers and 2 movies, and the program displays 0 (zero) because the movie at index zero has the highest sum of ratings (movie 0 has sum of ratings equals to 12 while…arrow_forward
- Create a BinarySearch client that accepts an integer T as a command-line option and performs T trials of the following experiment for N = 103, 104, 105, and 106: Find the number of values that appear in both arrays of N randomly generated positive six-digit int values. For each number of N, print a table with the average value of this quantity over the T trials.arrow_forwardPlease help me code in java: Write a program that reads two files “Data1.txt”, “Data2.txt”; adding their corresponding elements produces an output file “output.txt”. If the number of elements are not equal, fill the elements of the smaller file up with “0” s. Sample output: Elements of the “Data1.txt”: 3 5 7 8 9 Elements of the “Data2.txt”: 45 11 Elements of the “Output.txt”: 48 16 7 8arrow_forwardWrite a program that takes an integer array and perform following operations sum, average, percentage,. The user must non zero integers. If they were not an integer, the program would throw a NumberFormatException if user try to input string instead of integer value. If denominator were Zero, the program would throw an ArithmeticException and Display the exception.arrow_forward
- Write a program in java that will continue to prompt the user for numbers, storing them in an array, until they enter "Done" to finish, then prompts the user for a file name so that these values can be saved to that file. For example, if the user enters "output.txt", then the program should write the numbers that have been read to "output.txt".arrow_forwardCreate four methods named insertionSort(), bubblesort(), mergesort() and quicksort(). Implement the sorting algorithms in the corresponding methods. In the main method, create four arrays a, b, c, d and initialize them with the same values. Pass these four arrays in four different functions. Create four instance variables named insertionSwap, bubbleSwap, countMerge, and countQuickSort and initialize them to 0. In methods insertionSort(), bubblesort() and quicksort(), increment the variables insertionSwap, bubbleSwap, and countQuickSort respectively by one whenever they call the method swap(). In method mergesort(), increment the variable countMerge by one to count the swaps. Use method swap() to swap the values.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





