Non-Tech

Statistics

Statistics is the science of collecting, analyzing, and drawing conclusions from data. It provides the mathematical foundation for hypothesis testing, regression analysis, probability modeling, and experimental design. Interview questions cover core concepts like distributions, p-values, confidence intervals, correlation vs. causation, and the philosophical differences between Bayesian and frequentist approaches — skills essential for data science, research, and evidence-based decision-making.

What you get

Questions

20

Difficulty

3 levels

Answer Formats

2

Use the toggle on each card to move between an interview-ready answer and a simpler explanation. Questions are sorted from beginner to advanced, and the keywords are highlighted. You can also blur the answers to practice recalling them from memory.

Questions

Practice the answers out loud.

All topics

Question 1

What is the difference between descriptive and inferential statistics?

Beginner

How to answer in an interview

Descriptive statistics summarize and describe the main features of a dataset, using measures like mean, median, mode, and standard deviation. Inferential statistics go further by using sample data to make generalizations, predictions, or inferences about a larger population, often involving hypothesis testing and confidence intervals.

Question 2

What is the difference between mean, median, and mode?

Beginner

How to answer in an interview

The mean is the arithmetic average, calculated by summing all values and dividing by the count. The median is the middle value when data is sorted, robust to outliers. The mode is the most frequently occurring value. For skewed distributions, the median is often preferred over the mean as a measure of central tendency.

Question 3

What is standard deviation and why does it matter?

Beginner

How to answer in an interview

Standard deviation measures how spread out data values are from the mean, calculated as the square root of variance. A low standard deviation means data points cluster near the mean, while a high one indicates wide dispersion. It's fundamental in statistics for understanding variability, detecting outliers, and in the context of the normal distribution, roughly 68% of data falls within one standard deviation.

Question 4

What is correlation and how does it differ from causation?

Beginner

How to answer in an interview

Correlation measures the strength and direction of a linear relationship between two variables, commonly using Pearson's correlation coefficient (r), which ranges from -1 to +1. Correlation does not imply causation because a third (confounding) variable may explain the relationship, or the association may be coincidental. Establishing causation requires controlled experiments or rigorous causal inference methods.

Question 5

What is the difference between population and sample?

Beginner

How to answer in an interview

A population includes every member of the group you're interested in, while a sample is a subset selected for study. Population values are called parameters (like mu for the population mean), while sample values are called statistics (like x-bar for the sample mean). Since measuring an entire population is usually impractical, we use samples and statistical inference to draw conclusions about the population.

Question 6

What is the difference between probability and statistics?

Beginner

How to answer in an interview

Probability deals with predicting the likelihood of future events given known parameters (the forward problem). Statistics works in reverse — using observed data to infer the unknown parameters or processes that generated it (the inverse problem). Probability provides the mathematical foundation on which statistical methods are built.

Question 7

What is a normal distribution and why is it important?

Intermediate

How to answer in an interview

The normal (Gaussian) distribution is a symmetric, bell-shaped probability distribution defined by its mean and standard deviation. It's important because many natural phenomena follow it, the Central Limit Theorem shows that sample means approach normality regardless of the underlying distribution, and it forms the basis for many statistical tests like t-tests and z-tests.

Question 8

What is the Central Limit Theorem?

Intermediate

How to answer in an interview

The Central Limit Theorem states that the distribution of sample means approaches a normal distribution as the sample size increases, regardless of the original population's distribution shape, provided the sample size is sufficiently large (typically n >= 30). This is the theoretical foundation for many inferential statistics methods, including hypothesis tests and confidence intervals for means.

Question 9

What is a confidence interval?

Intermediate

How to answer in an interview

A confidence interval is a range of values, derived from sample data, that is likely to contain the true population parameter. The confidence level (commonly 95%) indicates the long-run proportion of such intervals that would contain the true value. A narrower interval implies more precision, while a wider interval reflects greater uncertainty.

Question 10

What is a hypothesis test and how does it work?

Intermediate

How to answer in an interview

A hypothesis test evaluates two competing claims about a population: the null hypothesis (H0), representing no effect or no difference, and the alternative hypothesis (Ha), representing the effect or difference you're testing for. You calculate a test statistic from the sample and its corresponding p-value, then compare the p-value to a significance level (like 0.05). If the p-value is below the threshold, you reject H0.

Question 11

What is a p-value and what are common misinterpretations?

Intermediate

How to answer in an interview

The p-value is the probability of observing a test statistic as extreme as, or more extreme than, the one calculated, assuming the null hypothesis is true. Common misinterpretations include believing it's the probability that the null hypothesis is true, or the probability the result occurred by chance — neither is correct. A small p-value indicates the data is inconsistent with the null, not that the effect is practically significant.

Question 12

What is the difference between Type I and Type II errors?

Intermediate

How to answer in an interview

A Type I error (false positive) occurs when you reject a true null hypothesis, while a Type II error (false negative) occurs when you fail to reject a false null hypothesis. The probability of a Type I error is controlled by the significance level (alpha), while the probability of a Type II error (beta) is reduced by increasing sample size or effect size. Statistical power is 1 - beta.

Question 13

What is a t-test and when would you use it?

Intermediate

How to answer in an interview

A t-test compares the means of one or two groups, used when the population standard deviation is unknown and/or the sample size is small. A one-sample t-test compares a sample mean to a known value, an independent two-sample t-test compares means of two separate groups, and a paired t-test compares means from the same group at two times. The t-distribution adjusts for the extra uncertainty of estimating the standard deviation from a small sample.

Question 14

What is the difference between parametric and non-parametric tests?

Intermediate

How to answer in an interview

Parametric tests assume the data follows a known distribution (usually normal) and work with the raw values, offering greater statistical power when assumptions are met. Non-parametric tests make fewer or no distributional assumptions, working with ranks or orderings instead of raw values, making them more robust when data is skewed, ordinal, or violates normality assumptions.

Question 15

What is regression analysis?

Intermediate

How to answer in an interview

Regression analysis models the relationship between a dependent variable and one or more independent variables. Linear regression fits a straight line to minimize the sum of squared residuals. R-squared measures the proportion of variance in the dependent variable explained by the model. Multiple regression includes more than one predictor, and the method can be extended to non-linear relationships.

Question 16

What is sampling bias and why is it a problem?

Intermediate

How to answer in an interview

Sampling bias occurs when the sample is not representative of the population because certain groups are systematically over- or under-represented. Common types include selection bias, undercoverage, and voluntary response bias. It leads to misleading conclusions because the results cannot be generalized to the population. Random sampling is the primary method for reducing bias.

Question 17

What is the difference between a one-tailed and two-tailed test?

Intermediate

How to answer in an interview

A two-tailed test checks for any difference in either direction (greater than or less than), splitting the significance level between both tails of the distribution. A one-tailed test checks for a difference in only one direction (greater than or less than), concentrating the entire significance level in one tail. One-tailed tests are used when you have a directional hypothesis based on theory or prior evidence.

Question 18

What is the chi-square test used for?

Intermediate

How to answer in an interview

The chi-square test is used for categorical data. A chi-square goodness-of-fit test checks whether observed frequencies match expected frequencies for a single variable. A chi-square test of independence checks whether two categorical variables are related in a contingency table. Both compare observed versus expected counts, with large differences producing high chi-square statistics and small p-values.

Question 19

What is ANOVA and when is it used?

Intermediate

How to answer in an interview

ANOVA (Analysis of Variance) tests whether the means of three or more groups are significantly different, using the F-statistic which compares between-group variance to within-group variance. It's used instead of multiple t-tests to control the overall Type I error rate. If ANOVA finds a significant difference, post-hoc tests like Tukey's HSD identify which specific groups differ.

Question 20

What is Bayesian vs frequentist statistics?

Advanced

How to answer in an interview

Frequentist statistics treats probability as the long-run frequency of events and evaluates hypotheses using p-values and confidence intervals without incorporating prior beliefs. Bayesian statistics treats probability as a degree of belief, combining prior information with observed data via Bayes' theorem to produce a posterior distribution that updates as new data arrives. Bayesian methods are preferred when incorporating domain knowledge or when data is limited.

More in Non-Tech

Keep browsing related topics.

Browse all