The 60 statistics questions interviewers actually ask, with direct answers, examples, diagrams, videos, Python snippets, and data science tips.
60 questions with answersKey Takeaways
Statistics is the practice of collecting, summarizing, analyzing, and interpreting data while accounting for uncertainty. In interviews, statistics is not just formulas. It is how you decide whether a pattern is meaningful, whether an experiment result is trustworthy, whether a sample represents a population, and how much uncertainty remains. Strong answers define the idea, give a simple example, and The decision risk if the statistic is misread.
Watch: MIT 18.650: Introduction to Statistics
Video: MIT 18.650: Introduction to Statistics (MIT OpenCourseWare, YouTube)
Test yourself and earn a certificate
6 quick questions. Score 70%+ to download your Statistics certificate.
Start here. These are the definitions and first-principle checks that open most rounds.
Statistics is the use of data to summarize patterns, estimate unknowns, test ideas, and make decisions under uncertainty.
The interview focus is interpretation, not memorizing formulas.
statistics changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Watch a deeper explanation
Video: MIT 18.650: Introduction to Statistics (MIT OpenCourseWare, YouTube)
A population is the full group you want to understand.
The population before discussing whether a sample is valid.
population changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
A sample is the subset of the population that you actually observe.
A sample must represent the target population for inference to be useful.
sample changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
A parameter is a true but usually unknown value describing a population.
Population mean and population proportion are common examples.
parameter changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
| Answer part | What to say | Evidence to mention |
|---|---|---|
| Definition | parameter in one direct sentence. | Official docs or course material |
| Use case | The work where it changes a decision. | Dataset, model, query, dashboard, or pipeline |
| Risk | What breaks when it is misunderstood. | Metric, log, test result, or review note |
A statistic is a value calculated from a sample.
A sample mean estimates a population mean, but it has sampling error.
statistic changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Watch a deeper explanation
Video: Hypothesis Testing and p-values (Khan Academy, YouTube)
The mean is the arithmetic average of values.
It is sensitive to outliers, so mention median when the distribution is skewed.
mean changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
The median is the middle value after sorting.
It is often better than mean for skewed income, price, or time data.
median changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
A Type II error is a false negative: failing to reject a false null hypothesis.
In experiments, it can mean missing a change that actually helps.
Type II error changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Variance measures average squared distance from the mean.
It is in squared units, so standard deviation is often easier to explain.
variance changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Standard deviation measures typical spread around the mean in the original units.
Use it to explain variability, not only central tendency.
standard deviation changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
A percentile tells you the value below which a given percentage of observations fall.
Percentiles are strong for latency, salary, and skewed distributions.
percentile changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
A distribution shows how values are spread across possible outcomes.
Shape matters: normal, skewed, heavy-tailed, or multimodal distributions imply different analysis choices.
distribution changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
A normal distribution is a symmetric bell-shaped distribution defined by mean and standard deviation.
Many methods assume normality, but real data should be checked.
normal distribution changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Watch a deeper explanation
Video: Confidence Intervals, Hypothesis Testing, and Power (MIT OpenCourseWare, YouTube)
Effect size measures how large a difference or relationship is, not just whether it is statistically detectable.
the question expects you to separate practical impact from p-value significance.
effect size changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
The central limit theorem says sample means tend toward a normal distribution as sample size grows, under common conditions.
It supports many confidence interval and hypothesis test methods.
central limit theorem changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
A hypothesis test checks whether observed data is surprising under a null hypothesis.
The null, alternative, test statistic, p-value, and decision.
hypothesis test changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
A p-value is the probability of results at least this extreme if the null hypothesis were true.
It is not the probability the null is true.
p-value changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Key point: This is a common filter question. If you define p-value incorrectly, the interviewer will usually dig deeper.
A confidence interval gives a range of plausible values for an estimate under repeated sampling.
It shows uncertainty and effect size together.
confidence interval changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
A Type I error is a false positive: rejecting a true null hypothesis.
In A/B tests, it means shipping a change that did not really help.
Type I error changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Statistical power is the chance of detecting a real effect when it exists.
Power increases with larger sample size, larger effect size, and lower noise.
statistical power changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
These questions test whether you can apply the topic to real data, real code, and messy constraints.
Report count, missingness, mean or median, spread, percentiles, outliers, and distribution shape.
the question, then choose summaries that answer it comes first.
summarizing a dataset changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Use mean for roughly symmetric data and median for skewed data or outlier-heavy values.
Income and latency are classic median examples.
choosing mean vs median changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
| Measure | Best when | Watch out for |
|---|---|---|
| Mean | Data is roughly symmetric | Outliers pull it |
| Median | Data is skewed | Ignores magnitude beyond order |
Key point: Good candidates The data shape before choosing a summary matters.
Use standard deviation for symmetric numeric data and IQR for skewed or outlier-heavy data.
Always pair center with spread.
calculating spread changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Use histograms, Q-Q plots, summary stats, and domain knowledge.
Do not rely on a test alone when the sample is huge or tiny.
checking normality changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Check whether outliers are data errors, valid rare events, or influential points before removing them.
Explain the decision and test sensitivity with and without them.
handling outliers changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Watch a deeper explanation
Video: P-values and Significance Tests (Khan Academy, YouTube)
Choose the estimate, standard error, confidence level, and method that fits the data.
Then explain it in plain language.
building a confidence interval changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
import numpy as np
x = np.array([18, 20, 22, 19, 21, 25, 23])
mean = x.mean()
se = x.std(ddof=1) / np.sqrt(len(x))
t_crit_95_df6 = 2.447
ci_95 = (mean - t_crit_95_df6 * se, mean + t_crit_95_df6 * se)
print(mean, ci_95)Say it is probability under the null, then The decision and the effect size.
Do not say it proves the alternative.
explaining a p-value changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Base the test on outcome type, group count, pairing, distribution, and sample size.
For example, t-test for comparing means, chi-square for categorical association, and proportion tests for rates.
choosing a test changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Combine p-value, confidence interval, effect size, sample size, and practical impact.
A tiny effect can be significant but useless.
interpreting significance changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Specify desired power, significance level, minimum detectable effect, and baseline variability or rate.
Sample size is about detecting an effect worth acting on.
calculating sample size changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Use a t-test to compare means when assumptions are acceptable or sample sizes support it.
Mention independent vs paired designs.
using a t-test changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Use chi-square tests for relationships between categorical variables.
Check expected counts before trusting the result.
using chi-square changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Measure association, inspect scatterplots, and avoid causal claims.
Correlation can miss non-linear relationships.
using correlation changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Use regression to estimate relationships while controlling for variables, then inspect assumptions and residuals.
Regression coefficients need context and units.
using regression changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Look for patterns, non-constant variance, outliers, and non-linearity.
Residual plots tell you what the model missed.
checking residuals changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Define hypothesis, randomization unit, sample size, primary metric, guardrails, and stopping rule.
Avoid changing the test after seeing results.
running an A/B test changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Experiment readout
Control false positives with correction methods or mark the analysis exploratory.
More comparisons mean more chances to find noise.
handling multiple tests changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Say power is the chance to detect a real effect, and low power means you may miss useful changes.
Low power does not prove there is no effect.
explaining statistical power changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Use intervals, ranges, caveats, and plain-language risk statements.
Decision makers need uncertainty, not false certainty.
communicating uncertainty changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Use Python to calculate summaries, intervals, tests, and plots, but verify assumptions yourself.
Libraries do math. You own the interpretation.
using Python for statistics changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Advanced rounds test trade-offs, failure modes, and whether the decision can hold up under production pressure.
Report the effect estimate, confidence interval, power, and whether the result is inconclusive or likely not useful.
Not significant does not always mean no effect.
A/B test is not significant changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
The uncertainty, avoid strong claims, and either collect more data or frame the result as exploratory.
Small samples can still teach, but they should not be oversold.
sample is too small changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Inspect skewness and outliers, then choose the statistic that matches the decision.
For skewed data, median and percentiles often explain user experience better.
mean and median disagree changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Watch a deeper explanation
Video: Parametric Hypothesis Testing (MIT OpenCourseWare, YouTube)
Use percentiles, log transforms where appropriate, and segment analysis.
Averages hide long-tail pain.
metric has a long tail changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Report practical significance separately from statistical significance.
Large samples can make tiny effects look impressive.
p-value is tiny but effect is small changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Say the data does not rule out no effect at that confidence level.
Then discuss whether more data or a different design is needed.
confidence interval crosses zero changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Use non-parametric methods, transformations, bootstrap intervals, or a model better suited to the data.
The choice depends on sample size and decision need.
data violates normality changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Inspect confounders, time order, and possible causal design before claiming causation.
High correlation can still be misleading.
correlation is high changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Check randomization, assignment logging, bot traffic, filtering, and user bucketing.
A sample ratio mismatch can invalidate the test.
experiment has sample ratio mismatch changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Report sensitivity with and without the outlier and investigate whether it is valid.
Transparency beats silently deleting it.
outlier changes the result changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Prioritize pre-planned segments and treat unplanned slices as exploratory.
Segment fishing creates false discoveries.
many segments show mixed results changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Use two-tailed unless the direction was justified before seeing data.
One-tailed tests after the fact are a red flag.
choosing one-tailed vs two-tailed test changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Do not make a strong no-effect claim. Increase sample size, reduce noise, or target a larger effect.
Low power produces inconclusive results.
low power experiment changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Account for clustering, repeated users, or paired data in the design and analysis.
Independence assumptions break easily in product data.
non-independent observations changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Call out seasonality, trend, user mix, and product changes as threats.
Historical controls are weaker than randomization.
using historical controls changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Check data quality, assumptions, segment effects, and whether the metric is answering the right question.
Statistics does not remove domain thinking.
statistical result conflicts with domain sense changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Document the change and avoid mixing pre-change and post-change results without adjustment.
A changed metric can create a fake effect.
metric definition changes mid-test changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Explain the coefficient in units and with controls held constant.
Coefficients are not useful without context.
regression coefficient is misunderstood changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Disclose the peeking and use methods that account for sequential monitoring if needed.
Peeking inflates false positives.
analysis used after peeking changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
The estimate, uncertainty, assumptions, effect size, and decision risk.
That structure works across almost every statistics interview problem.
senior statistics answer changes Statistics decisions by affecting the chosen method, the failure mode, or the validation step. Reliable evidence comes from a metric, test result, query output, log, or review note.
Descriptive statistics summarize the data you have. Inferential statistics use a sample to reason about a larger population. the question expects you to know both and not confuse a sample pattern with proof.
| Area | Purpose | Examples | Interview mistake |
|---|---|---|---|
| Descriptive statistics | Summarize observed data | Mean, median, variance, percentiles | Treating a summary as a causal answer |
| Inferential statistics | Estimate population patterns from samples | Confidence intervals, hypothesis tests | Ignoring sampling uncertainty |
| Predictive modeling | Predict unseen outcomes | Regression, classification | Optimizing prediction while ignoring explanation |
| Causal analysis | Estimate effect of an action | A/B tests, causal designs | Calling correlation causation |
Statistics interview focus
Most rounds test interpretation more than formula recall.
Scale: Hyring editorial score for interview preparation, not an external benchmark.
Prepare through interpretation. Know the formulas, but practice saying what the number means, when the method fails, and what decision follows.
The typical Statistics interview flow
Most rounds reward clear reasoning more than memorized phrasing.
Statistics interview answers should make uncertainty usable. The goal is not to recite a formula and stop. The key detail is what is being estimated, what sample it came from, what assumptions the method needs, what error could happen, and whether the result is large enough to change a decision.
After any calculation, say what it means in plain English. A mean is a center, a standard deviation is spread, a confidence interval is a range of plausible values, and a p-value is evidence under a null model. This habit stops the answer from becoming symbol-only.
A t-test, regression coefficient, correlation, or confidence interval depends on assumptions about sampling, independence, variance, distribution shape, measurement quality, or model form. Interviewers often care less about the exact formula than whether you know when the formula becomes unsafe.
A tiny p-value can come from a large sample and still describe an effect that is too small to matter. A practical answer reports effect size, uncertainty, and business cost. If conversion improves by 0.05 percent, the next question is whether that lift pays for the change.
Larger samples usually narrow confidence intervals and make small effects easier to detect. They do not fix bad measurement, biased sampling, or a wrong metric. This distinction is useful in interviews because many prompts mix statistical power with data quality.
Do not define false positive and false negative only in abstract terms. In a hiring screen, a false positive might advance an unqualified candidate, while a false negative might reject a good candidate. In fraud, those costs are different. Context decides the threshold and sample size.
Correlation summarizes movement between variables. Regression models a relationship while controlling for chosen inputs. Causation needs stronger evidence, usually from randomization or a credible causal design. Saying this clearly prevents the common mistake of treating a coefficient as proof of impact.
A histogram, box plot, or residual plot can explain a statistical issue faster than another equation. Mention skew, heavy tails, clusters, and outliers when they affect the method choice. This tells the interviewer you can inspect data before trusting a test result.
A confidence interval without units is hard to act on. Say whether the range is percentage points, dollars, seconds, users, or candidates. Then say whether the whole range is acceptable for the decision. This makes uncertainty practical instead of decorative.
Before comparing two groups, ask whether they differ in timing, selection, exposure, or measurement. A clean statistical test can still mislead if the groups were formed in a biased way or measured under different conditions.
Many statistical answers fail before the math starts because the sample is biased, the measurement changed, or the groups were not comparable. Strong candidates ask how data was collected, what changed during collection, and whether the observed sample can support the claim.
For experiment questions, say what result would make you ship, hold, or collect more data. That can include a minimum effect size, a confidence interval that excludes unacceptable harm, enough power, and clean guardrail metrics. This shows you can use statistics without overclaiming.
6 questions, about 4 minutes. Score 70% or higher to earn a shareable certificate.
Hyring's AI Coding Interviewer can score Python, SQL, experiment, and model-evaluation reasoning. These statistics questions help you explain the why behind your calculations.
See Hyring AI Coding Interviewer