AppliedAIPrep logoAppliedAI/Prep

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
📊 Evaluation & ML Foundations
Offline vs Online Evaluation: Why Offline Wins Fail to HoldWhat held-out metrics measure, what an A/B test measures, and why they disagree: static data, feedback loops, and shift. Gate offline, confirm online.
Foundational
📊 Evaluation & ML Foundations
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.
Core
📊 Evaluation & ML FoundationsSign in
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.
Core
📊 Evaluation & ML FoundationsSign in
Multi-Armed Bandits: Epsilon-Greedy, UCB, Thompson SamplingHow bandits trade exploration against exploitation, what epsilon-greedy, UCB, and Thompson sampling each do, and when a bandit beats a fixed A/B test.