answersLogoWhite

0


Best Answer

Span

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the The difference between the largest and the smallest data values?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between the smallest and largest values or the results of function?

The range.


What is the difference between the largest and the smallest values in a set of numbers?

This difference is called the range. Subtract the smallest value (S) from the largest value (L).Formula: L - S = Difference


What is the term in statistics for the difference between the smallest and largest values in the data set?

RangeThe term for the difference between the smallest and the largest values in a set of data is called the range. It is probably derived from the idea that the values of the numbers in the data could range anywhere from the lowest to the highest values but not beyond. The range is a measure of how disperse (spread out) the values are but it is not a very powerful measure.


What's the range of 3 -9 7 -1 5 -4 2?

The answer is 16. The range is the difference between the largest and smallest values: Largest: 7 Smallest: -9 Difference = 7 - (-9) = 16


What is the range of this data 36 64 37 45 53 60?

The "range" is just the difference between the largest and smallest values. The largest number is 64 and the smallest number is 36. So, the range of this data is 64 - 36 = 28!


How do you find the interval for a set of data?

You find the the smallest and largest values. The interval is the largest minus the smallest.


How do you find the range of a number set beginning with zero?

The range is defined as the difference between the largest and the smallest values. One of these is known to be 0. If all the other numbers are negative, then the range is the absolute value of the smallest number whereas if all the other numbers are positive, the range is the largest number.


Is ranking data in order from smallest to largest or vice-versa?

Yes. In the field of "ordered statistics" it makes no difference if data is ranked smallest to highest or vice-versa, but the convention is to consider rank = 1 the smallest value and rank = m the largest value of m values.


What is the range of this relation 3 2 2 4 2 6 3 5 0 3?

The range is just the difference between the largest and smallest values lowest (0) and highest (6) for a range of 6.


What are the smallest and the largest integer values for primitive type short?

The smallest value is -32,768 and the maximum is 32,767


What is a range of values for a data?

It is the largest value less the smallest one.


Write a program that randomly fills a 10 component array then prints the largest and smallest values in the array?

final double[] ns = new double[10]; final Random rnd = new Random(System.currentTimeMillis()); // Fill... for (int i = 0; i < ns.length; ++i) { ns[i] = rnd.nextDouble(); } // Get largest/smallest... double largest = Double.MIN_VALUE; double smallest = Double.MAX_VALUE; for (double n : ns) { if (n > largest) { largest = n; } if (n < smallest) { smallest = n; } } // largest and smallest are now the proper values.