ab testing
Applied AI interview questions tagged ab testing, across every topic.
12 questions · 1 unlocked for you
Concepts behind "ab testing"
The curriculum that explains the ideas these questions test.
Foundational
Offline vs Online EvaluationOffline evaluation scores a model on held-out data; online evaluation measures its impact on real users (via an A/B test). They often disagree: an offline win frequently fails to move the online metric, because offline data is a static proxy and the real world has feedback loops, distribution shift, and second-order effects. The discipline is to gate with offline evals (fast, cheap) and confirm with online tests (the truth). Applied-AI interviews probe it because shipping on offline metrics alone is a classic, costly mistake.📊 Evaluation & ML Foundations
Foundational
A/B TestingAn A/B test randomly splits users between a control and a variant and compares a metric to measure causal impact. The hard part is validity, not setup: peeking inflates false positives, you need enough power, sample-ratio mismatch signals a bug, and network effects and novelty break naive tests. For ML, it is how you confirm an offline improvement actually helps online, because offline gains often do not hold. Applied-AI interviews probe it because shipping on offline metrics alone is a classic mistake.📊 Evaluation & ML Foundations
Core
CLT, Sampling, and Confidence IntervalsThe central limit theorem says the mean of a sample is approximately normal regardless of the underlying distribution, which is why so much inference uses the normal curve. Standard error measures how much a sample mean wobbles and shrinks with sample size, unlike standard deviation. Applied-AI interviews probe this because it sets how wide a confidence interval is and therefore how long an A/B test must run.📊 Evaluation & ML FoundationsSign in
Core
Multi-Armed BanditsA multi-armed bandit chooses among options to maximize reward while learning which is best, balancing exploration (try options to learn) against exploitation (use the best-known). Algorithms include epsilon-greedy, UCB, and Thompson sampling. Bandits beat fixed A/B tests when you want to minimize regret (stop wasting traffic on losers during the test) or have many options; A/B tests win when you need a clean, unbiased measured effect. Applied-AI interviews probe it because the explore-exploit trade-off appears in ranking, recommendation, and as a simple form of reinforcement learning.📊 Evaluation & ML FoundationsSign in
