Calculate and output the mean and median of collected data

Assignment Help Basic Computer Science
Reference no: EM13306873

Design a program that will allow some number of grades (up to a max of 100) to be input by the user. After the data has been collected, your program should calculate and output the mean and median of the collected data, as well as the sorted grade information.

Design Constraints

  1. Use an integer constant of 100 to specify the number of elements in the array you will use to collect the grade information.
  2. Do not use any global variables in your program.
  3. Declare any arrays you need in your main function and pass the arrays as needed into the functions described below.
  4. The main function is the only function permitted to do any output to the console!!! Do not do cout operations inside of any other function.
  5. Your data collection loop in your main function must allow the user to enter less than 100 grades. It must also make sure that the user does not try to enter more than 100 grades.
  6. Each data value entered should be checked to make sure it is between 0 and 100. Any other value entered should be considered invalid and ignored (ie. not counted as a valid input and not stored in an array).
  7. Once the data is collected, the array and the number of grades collected must be passed to a function called mean.
  8. The mean function must loop through the values in the array, summing them together. The result of the function is the sum divided by the number of grades collected. The result must be returned from the mean function to the main function, where is it output in an appropriate manner (two digits after the decimal point).
  9. The main function should then pass the array and the number of grades collected to the median function.
  10. The median of a set of numbers is the number in the set where half the numbers are above it and half the numbers are below it. In order to find the median, this function will need to sort the original data.
  11. The simplest sorting procedure is called bubble sorting. The following pseudocode describes bubble sorting for Xvalid array elements.

for outer = 0; outer < X; outer++

for inner = 0; inner < X-1; inner++

if array[inner] > array[inner+1]

          swap(array[inner], array[inner+1]);

  1. After the data has been sorted, the median value can be found. If the array has an odd number of elements the median is the value of the middle element (Hint: arraySize/2 is the middle element). If the array has an even number of elements then the median is the average of the middle two elements (Hint: arraySize/2 and ( arraySize/2) - 1 are the two middle elements). The median value should be returned by the median function.
  2. The main routine should output the median value in an appropriate manner.
  3. The main routine should also output the sorted array with 5 grades per line.
  4. Carefully develop test cases for your program. Most of your test cases do not need to contain lots of values. Make sure to include incorrect inputs such as negative grade values. Calculate what your mean and median values should be for your test cases. Document your test cases in a Word document.
  5. Run your test cases with your program to see if your program generates the expected output. If not, troubleshoot your program and fix the problem. When your program executes a test case correctly, take a screen shot of the program output and paste it into your Word document to prove that your test case executed correctly with your program.
  6. Make sure that your code is properly formatted! You also need to make sure you include a comment block for each function which documents the purpose, inputs, and outputs of each function!

 

Reference no: EM13306873

Questions Cloud

Calculate the scattering angle : X-rays are scattered from electrons in a carbon target. The measured wavelength shift is 0.00099 nm. Calculate the scattering angle
Create queue class should have the following methods : create queue class should have the following methods:
Determine the image distance from the lens : A magnifying lens with a focal length of 5 cm is held 4 cm from an object that is 1cm tall. Find the image distance from the lens
What is the heat rejection for the condenser in btu per h : Consider a small simple Rankine Power cycle which produces 600kW power from an electric generator with an efficiency of 95%. The steam leaves the boiler at 1250psia as superheated steam and leaves the turbine at 2 psia with a quality of 90%.
Calculate and output the mean and median of collected data : Design a program that will allow some number of grades (up to a max of 100) to be input by the user. After the data has been collected, your program should calculate and output the mean and median of the collected data, as well as the sorted grade..
Store the quotient in a word-size variable called result : Show how to perform 77 / 3 in the HCS12. Store the quotient in a WORD-size variable called result, and the remainder in a WORD-size variable called remainder.
Obtain the value of the resistor : A 120 V rms voltage at 60 Hz is applied across a 10 uF capacitor and an unknown resistor. what is the value of the resistor
Draw the uml diagram and implement : Draw the UML diagram and implement the new GeometricObject class. Write a test program that uses the max method to find the larger of two circles and the larger of two rectangles.
Determine the average velocity in the diameter pipe : If the average velocities in the 0.15 m and 0.2 m diameter pipes are 2 m/s and 3 m/s respectively, then find the average velocity in the 0.3 m diameter pipe

Reviews

Write a Review

Basic Computer Science Questions & Answers

  File contains data for an individual wedding album

Each line of this file contains data for an individual wedding album and delivery. These data  are used to determine the total cost of producing and posting a batch of albums to a  customer. Each column of this file contains values for the following..

  What information do you need to be able to retrieve

What information do you need to be able to retrieve every record from a hashed file in ascending key order?

  Use a for loop to iterate through the array and input values

Use a For loop to iterate through the array and input the values.

  What is the const keyword in c++ and why would you use

What is the const keyword in C++? Why would you use the const keyword

  Identify a new use for ugc

Choose one of the two publications and identify a new use for UGC. Write a one-page memo to the publisher of that magazine describing your idea and how it would contribute to the goals of the publication.

  Explain how to structure worksheet including titles

Explain how you will structure the worksheet, including the titles, column headings, and formulas to calculate the time it takes to make each size of cage.

  Significant business opportunity of apple

Do you believe it was wise for Apple to only present their OS on their PC instead of offering the version of Apple OS for other manufactory's (HP, Dell, Sony, etc) PC's?

  Using sjn in what order should they be processed

five jobs (a b c d e) are already in the READY queue waiting to be processed. their estimated CPU cycles are respectively 2 10 15 6 and 8. using SJN in what order should they be processed?

  Explaining firewalls and virus protection software

Lots of people who connect their systems to the Internet rush out and purchase latest copies of firewalls and virus protection software.

  Describe each of the network design goals

Describe each of the Network design goals.

  How an object would be instantiated using both types

explain what constructors do and when they are executed. Explain the two types of constructors. Provide an example class that includes both types of constructor functions and demonstrate how an object would be instantiated using both types of cons..

  Excavated material to the structural fill location

How many dump truck loads, given a dump truck with 18 LCY capacity, will be required for hauling the excavated material to the structural fill location?

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd