InterviewSkill

Statistics Interview Questions

Probability and statistics basics for data, ML, experimentation, and model evaluation interviews.

8 questions
Statistics

What is a p-value?medium

Type
conceptual
Topic
p-value
Frequency
common
Tags
p, value
Answer

It is the probability of observing results at least as extreme as the sample, assuming the null hypothesis is true.

Explanation

A small p-value suggests the observed data is unlikely under the null, but it does not prove the alternative hypothesis or measure practical importance.

Follow-upWhy is p-value not the probability that the null hypothesis is true?

What is a confidence interval?medium

Type
conceptual
Topic
confidence-interval
Frequency
common
Tags
confidence, interval
Answer

It is a range of plausible values for a population parameter.

Explanation

A 95% confidence interval means that if the sampling process repeated many times, about 95% of intervals would contain the true parameter.

Follow-upHow does sample size affect interval width?

What is the central limit theorem?hard

Type
conceptual
Topic
central-limit-theorem
Frequency
common
Tags
central, limit, theorem
Answer

Sample means tend toward a normal distribution as sample size grows.

Explanation

This is useful because many inference methods rely on approximate normality of sample means even when raw data is not normal.

Follow-upWhat assumptions matter for the central limit theorem?

What is the difference between correlation and causation?medium

Type
conceptual
Topic
correlation-causation
Frequency
common
Tags
correlation, causation
Answer

Correlation shows association; causation means one variable produces a change in another.

Explanation

Correlation can be caused by confounders, reverse causality, or coincidence. Causal claims need experiments or careful causal analysis.

Follow-upHow would you design an experiment to test causality?

What are Type I and Type II errors?medium

Type
conceptual
Topic
type-i-type-ii-errors
Frequency
common
Tags
type, i, type, ii, errors
Answer

Type I is a false positive; Type II is a false negative.

Explanation

Type I errors reject a true null hypothesis, while Type II errors fail to reject a false null. The tradeoff depends on alpha, power, and sample size.

Follow-upHow can you increase statistical power?

What is statistical power?medium

Type
conceptual
Topic
statistical-power
Frequency
common
Tags
power, experiments, sample-size
Answer

Power is the probability of detecting a real effect when one exists.

Explanation

Power increases with larger sample size, lower noise, larger effect size, and a more permissive significance threshold. Low power makes experiments inconclusive.

Follow-upHow does sample size affect power?

How do you design a reliable A/B test?hard

Type
scenario
Topic
ab-test-design
Frequency
common
Tags
ab-testing, experimentation, metrics
Answer

Define the hypothesis, primary metric, sample size, randomization unit, guardrail metrics, and decision rule before launch.

Explanation

Good A/B tests avoid peeking, metric switching, sample-ratio mismatch, and interference between groups. The design should match the product decision.

Follow-upWhat is a guardrail metric?

What is a confounding variable?medium

Type
conceptual
Topic
confounding-variable
Frequency
common
Tags
causal-inference, confounding, experiments
Answer

A confounder is related to both the treatment and the outcome, making the observed relationship misleading.

Explanation

Confounding is why correlation can look causal. Randomization, stratification, matching, or regression controls can reduce confounding risk.

Follow-upHow does randomization help with confounding?