Mathematics · Quantitative Aptitude
Statistics and Dispersion
559 Questions
Statistics and dispersion involve the calculation of mean, standard deviation, variance, and coefficient of variation for data sets. These questions also cover probability distributions and cumulative frequency analysis. Such quantitative aptitude topics are heavily featured in banking and SSC examinations.
Standard deviationNormal distributionMean calculationCumulative frequencyCoefficient of variation
Statistics and Dispersion Questions
A
Correct answer
Explanation
The average of four numbers is 9, so their sum is 4 × 9 = 36. Three numbers are given: 5 + 9 + 12 = 26. The fourth number is 36 - 26 = 10. Option A is correct.
D
Correct answer
Explanation
The median is the middle value when numbers are arranged in order. The sequence 16, 18, 20, 22, 24, 26, 28 has 7 numbers, so the 4th number (22) is the median. Option C (23) would be the average of 20 and 24, which is incorrect.
A
Correct answer
Explanation
IQ scores are standardized so that the average (mean) score for a population is always 100, with a standard deviation of typically 15. This is a fundamental property of IQ testing - by definition, 100 represents average intelligence for the reference population. Scores above or below 100 indicate above or below average performance.
D
Correct answer
Explanation
To have an average of zero, the sum of the 20 numbers must be zero. To maximize the count of positive numbers, 19 numbers can be positive (e.g., all 1s), and the 20th number can be a large negative number (e.g., -19) to balance the sum to zero.
D
Correct answer
Explanation
The average of first n natural numbers is (n + 1)/2. For n = 40: (40 + 1)/2 = 41/2 = 20.5. This formula comes from the arithmetic series sum n(n+1)/2 divided by n.
A
Correct answer
Explanation
To keep the average of 20 numbers at zero, the sum must be zero. You can have 19 positive numbers as long as the 20th number is a negative value equal to the sum of the others. You cannot have 20 positive numbers because their sum would exceed zero.
-
Poverty
-
Line
-
Average
-
Triangle
C
Correct answer
Explanation
In Hindi, 'Ausat' means average - the typical or central value in a set of numbers. It comes from the mathematical concept of arithmetic mean used in statistics.
A
Correct answer
Explanation
Let x be the number to add. New average = (6 + 16 + 8 + x)/4 = 13. Therefore: 30 + x = 52, so x = 22. Adding 22 to the sum of 30 gives 52, which divided by 4 equals 13. This is a basic average problem - find the missing value that achieves a target mean.
B
Correct answer
Explanation
The 'firstobs=50 obs=450' option tells SAS to start reading at observation 50 and stop at observation 450. The number of observations processed is (450 - 50) + 1 = 401.
B
Correct answer
Explanation
The 'firstobs=50 obs=450' option tells SAS to start reading at observation 50 and stop at observation 450. The number of observations processed is (450 - 50) + 1 = 401.
-
DVAR
-
DSTDEV
-
DSTDEVP
-
DAVERAGE
C
Correct answer
Explanation
DSTDEVP is the Excel database function that calculates standard deviation based on the entire population of selected database entries. The 'P' suffix indicates population rather than sample. DVAR calculates variance, not standard deviation.
-
(1) 1% slower than,38% slower
-
(2) 10% slower than,4% slower
-
(3) 1% faster than,38% faster
-
(4) 10% faster than,4% faster
A
Correct answer
Explanation
According to IBM COBOL performance benchmarks, compiling with ARITH(EXTEND) is on average 1% slower than compiling with ARITH(COMPAT), with a maximum range of up to 38% slower in extreme cases.
B
Correct answer
Explanation
AVG and SUM aggregate functions ignore NULL values and return NULL if all values in the group are NULL. They don't work on 'any' numeric data because they skip NULL values entirely in their calculations.
C
Correct answer
Explanation
Standard SQL group/aggregate functions include COUNT, AVG, MAX, MIN, SUM, STDDEV, and VARIANCE. TOTAL is not a standard SQL aggregate function - the standard uses SUM for totaling values. While some databases might implement TOTAL, it's not part of core SQL group functions.
B
Correct answer
Explanation
AVG and SUM are defined only for numeric data types; they cannot operate on character or date fields. Attempting to use them on non‑numeric columns yields errors, so the statement that they work on any numeric data is false, confirming the stored answer.