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

  Find the type of language of the below languages

Find the type of language of the below languages L1 = {0^i1^j|i!=j}; L2 = {0^i1^j|i=j},L3={0^i1^j|i=2j+1},L4={0^i1^j|i!=2j}

  Write a program to help the weatherman with weather report

write a program to help the weatherman with his weather report. you will sample the temperature each hour on the hour over the course of 24 hours

  Write using the summation notation

Write using the summation notation

  Is the java source filename extension

is the Java source filename extension? What is the Java bytecode filename extension?

  How many bits are used for memory addresses

How many bits are used for memory addresses

  How write program contains array double values

How do you write a program that contains an array of 15 double values

  What type information is carried by data bus and address bus

What type of information is carried by the Data Bus? The Address Bus?

  How verbal and nonverbal communication affect communication

Write 1,750- to 2,100-word paper explaining how verbal and nonverbal communication can affect communication in given areas: Police situations (public announcement to the press).

  Find the order of t

Let T(n) be the running time of Yum(n). Find the order of T (that is find a function f(n) such that T?0(f)). (Assume that the real arithmetic is carried out exactly and is not subject to floating point round off errors.)

  Express e and f in sum-of-minterms algebraic form

Express E and F in sum-of-minterms algebraic form.

  Find out winner in card game

When there is tie, nobody loses. If first two cards total 8 or 9, hand is called a "natural" and it wins automatically, unless both hands have equal value "naturals", in which case it's a tie.

  Explain use of compensatory substituent in identification

Explain the use of "compensatory substituent" in identification and annotation of non-coding genes? Write down the difference between matrix and a Blosum60 Blosum20 matrix?

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