All 215 Statistics Fundamentals interview questions
Probability, hypothesis testing, confidence intervals, and the stats DS interviewers ask about.
Every question below opens on its own page, with a full answer, the formulas written out and a multiple-choice check. Free to read, no account needed.
Probability foundations
- State the Central Limit Theorem in one sentence.easy
- Bayesian vs frequentist — what's the core difference?medium
- State the Law of Large Numbers.easy
- Independence vs uncorrelatedness — what's the difference?medium
- State Bayes' theorem and one intuitive use.easy
- State Kolmogorov's three probability axioms.easy
- Define conditional probability and prove Bayes' rule from it.easy
- State the law of total probability.medium
- Bernoulli distribution: parameters, PMF, mean, variance.easy
- Binomial distribution and when to use it.easy
- Poisson distribution and its typical use cases.medium
- Geometric distribution: setup and mean.medium
- Uniform distribution: continuous vs discrete.easy
- Exponential distribution: setup, memorylessness, use cases.medium
- Normal distribution: PDF and key properties.easy
- Multivariate normal: parameters and key properties.medium
- What is a covariance matrix and its key properties?medium
- What is linearity of expectation?easy
- Variance of a sum: Var(X + Y) = ?medium
- Write covariance and correlation formulas.easy
- What is E[X | Y] and its Law of Total Expectation?medium
- Law of Total Variance — Var(X) = ?hard
- Why does the Cauchy distribution have no mean?hard
- State Jensen's inequality and give an ML example.hard
- What is a moment generating function and why care?hard
- State Chebyshev's inequality.medium
- State Markov's inequality.medium
- What is Hoeffding's inequality?hard
- How does Monte Carlo estimation work and its convergence rate?medium
- What statistical properties make maximum likelihood the default estimator?medium
- What is Fisher information?hard
- Bias, variance, consistency of estimators — define.medium
- MLE for a Bernoulli(p) — derive.medium
- MLE for Normal(μ, σ²) — result.medium
- When would you use Hoeffding's inequality for a CI?hard
- Cramér-Rao lower bound — state it.hard
- What is the influence function?hard
- Give the OLS closed-form and its variance.medium
- State Bayes' theorem and what each term means.easy
- Frequentist vs Bayesian — key philosophical difference.medium
- Potential outcomes framework — Rubin causal model.hard
Common distributions
Expectation & variance
Descriptive statistics & EDA
- Mean vs median vs mode — when do you prefer each?easy
- What are quantiles and quartiles?easy
- How do you read a boxplot?easy
- How do you choose bin width for a histogram?medium
- What is kernel density estimation?medium
- How do you define an outlier in practice?medium
- What is MAD and why is it robust?medium
- Describe a good EDA workflow for a new dataset.medium
- MCAR vs MAR vs MNAR — what's the difference?hard
- What imputation methods should you consider?medium
- When and why do you log-transform a variable?easy
- What is the Box-Cox transformation?medium
- Pearson vs Spearman vs Kendall correlation — when do you use each?easy
- What is an ECDF and why is it useful?medium
- How do you read a Q-Q plot?medium
- Standardization vs normalization — what's the difference?easy
- What multivariate EDA plots are most useful?medium
- How does EDA help catch target leakage?medium
- Why should you always do group-wise EDA?medium
- What time-series-specific EDA should you do?medium
- What do you look for in residual plots?medium
- When should you log-transform the response?medium
- Overall conversion went down but improved in every country. How is that possible?hard
- How do you spot selection bias in a dataset someone hands you?hard
Sampling & central limit theorem
Hypothesis testing
- What is a p-value, precisely?easy
- Type I vs Type II error — what's the difference?easy
- Why is multiple testing a problem and how do you correct for it?medium
- How do you formulate null and alternative hypotheses?easy
- One-sample t-test: setup and assumptions.easy
- Two-sample t-test: pooled vs Welch — when to use each?medium
- When do you use a paired t-test?easy
- z-test vs t-test — when to pick each?easy
- Chi-square test of independence — what does it do?medium
- Chi-square goodness-of-fit test — setup.medium
- What does one-way ANOVA test?medium
- Two-way ANOVA and what interactions mean.hard
- Mann-Whitney U (Wilcoxon rank-sum) — when and why?medium
- Wilcoxon signed-rank test — setup.medium
- Kruskal-Wallis — non-parametric ANOVA analog.medium
- Friedman test and its use case.hard
- Kolmogorov-Smirnov test — one- and two-sample.medium
- Shapiro-Wilk normality test — when useful?medium
- How do you test equality of variances?medium
- Why report effect size alongside p-values?easy
- What is power analysis and how do you use it?medium
- What is MDE (minimum detectable effect)?medium
- Bonferroni correction — how does it work?medium
- How does the Benjamini-Hochberg procedure work?hard
- What is a permutation test?medium
- What does McNemar's test do?hard
- When to use Fisher's exact test?medium
- What is p-hacking and how do you prevent it?medium
- FWER vs FDR — which do you control when?hard
- How is a CI related to a hypothesis test?medium
- Why is peeking at running A/B tests dangerous?hard
- What is alpha-spending in sequential testing?hard
- A product manager asks what a p-value of 0.03 means. What do you say?easy
Non-parametric tests
Power, effect size & multiple testing
- What techniques reduce variance in A/B tests?hard
- How does CUPED reduce variance in A/B tests?hard
- Why is checking an A/B test daily and stopping when it turns significant wrong?medium
- What do you need to know to compute a sample size for an experiment?medium
- Your experiment tracks 20 metrics and one is significant. What now?medium
Estimation: MLE, MoM, MAP
- What does a 95% confidence interval mean?medium
- What is the bootstrap and when do you use it?medium
- What is Maximum Likelihood Estimation?medium
- What is the Method of Moments (MoM)?medium
- MAP vs MLE — key difference.medium
- Explain the EM algorithm.hard
- Standard error vs standard deviation — the difference.easy
- What is the delta method?hard
- What is the jackknife?hard
- What is a conjugate prior?hard
- Beta-Bernoulli conjugate update — derive.medium
- What is an uninformative prior?hard
- What is Bayesian shrinkage?hard
- What is empirical Bayes?hard
- How does Thompson sampling work?medium
- Why do conjugate priors matter in production?medium
- What does a 95% confidence interval actually assert?medium
- When is a Bayesian analysis genuinely worth the extra effort?medium
Confidence intervals & bootstrap
- 95% CI for a mean — formula and interpretation.easy
- What CI methods exist for a proportion?medium
- Bootstrap CI methods — percentile vs BCa vs studentized.hard
- Why do you need block bootstrap for time series?hard
- Prediction interval vs confidence interval — the difference.medium
- Credible interval vs confidence interval.medium
- Why do ratio metrics need the delta method?hard
- When does the bootstrap give you the wrong answer?hard
Regression assumptions
- What are the Gauss-Markov assumptions for OLS?medium
- Heteroscedasticity — what breaks and how do you fix it?medium
- How do you detect and handle multicollinearity?medium
- R² vs adjusted R² — when do you use each?easy
- Cook's distance, leverage, DFBETAS — define.hard
- Standardized vs studentized residuals — the difference.hard
- Logistic regression: why MLE and not OLS?medium
- Odds ratio — interpret and derive.medium
- GLM: link function and exponential family — connection.hard
- Poisson regression: setup and pitfalls.hard
- Negative binomial regression — why use it?hard
- What is quasi-likelihood?hard
- What is a Generalized Additive Model (GAM)?hard
- Splines: knots, degrees of freedom, regularization.hard
- How do you include and interpret interactions in regression?medium
- What is a mixed-effects model?hard
- Random intercepts vs random slopes — the difference.hard
- Cluster-robust standard errors — when to use?hard
- Mixed-effects vs cluster-robust SEs — which do you pick?hard
- In practice, how do you handle correlated features in regression?medium
- Durbin-Watson test — what does it test?hard
- Two-stage least squares (2SLS) — the recipe.hard
- Your model reports R^2 = 0.92. What can go wrong with celebrating that?medium
- Two predictors correlate at 0.95. Does it matter?medium
- You have 50,000 measurements from 200 patients. What is your sample size?hard
Mixed effects & clustering
Bayesian methods
- What is the posterior predictive distribution?hard
- What is the marginal likelihood (evidence) and why is it hard?hard
- How do you interpret a Bayes factor?hard
- How does Bayesian A/B testing work?medium
- How does Metropolis-Hastings work?hard
- What is Gibbs sampling?hard
- Hamiltonian Monte Carlo — intuition.hard
- How do you diagnose MCMC convergence?hard
- Burn-in and thinning — why?medium
- Variational inference vs MCMC.hard
- Derive the ELBO for VI.hard
- Informative vs non-informative priors — the tradeoff.medium
- WAIC and LOO-CV — Bayesian model comparison.hard
- What is a prior predictive check?hard
- Posterior predictive check — how do you use it?hard
- When should you use a bandit instead of an A/B test?hard
Causal inference basics
- Why doesn't correlation imply causation?medium
- What is Simpson's paradox?hard
- Users who adopt feature X churn less. Can you say the feature reduces churn?easy
- What is SUTVA?hard
- How do you handle confounders in observational studies?medium
- An aggregate trend reverses once you stratify. Which conditioning set is correct?medium
- What is a collider and why is conditioning on it bad?hard
- What is Pearl's backdoor criterion?hard
- When is the frontdoor criterion useful?hard
- What is a propensity score?hard
- Inverse Probability Weighting — how does it work?hard
- Why is a doubly-robust estimator useful?hard
- What makes a valid instrumental variable?hard
- Difference-in-differences — setup and assumption.hard
- How do you defend the parallel-trends assumption?hard
- Regression discontinuity design — how does it work?hard
- What is synthetic control?hard
- Mediation analysis — direct vs indirect effects.hard
- How do you estimate heterogeneous treatment effects (HTE)?hard
- How does Simpson's paradox strike A/B tests?hard
- How do you test in a marketplace / network with SUTVA violations?hard
- Quantile treatment effect (QTE) vs ATE.hard
- Real interview: your model performs great in A/B but flops post-launch. Why?hard
- You cannot randomize. What is the strongest causal claim you can still make?hard
Experimentation & A/B testing
- What are the pillars of a solid A/B test design?medium
- What is Sample Ratio Mismatch (SRM) and why check it?medium
- What are guardrail metrics?easy
- OEC — Overall Evaluation Criterion — what is it?hard
- Novelty vs primacy effects in long experiments.hard
- Switchback experiments — when and how?hard
- What is the winner's curse in A/B testing?hard
- How do you measure long-term effects when A/B tests are short?hard
- How does a company scale to running 1000+ experiments concurrently?hard