10 DRW Quantitative Researcher (New Grad) Interview Questions (2026)
DRW's new-grad quant researcher loop in 2026 is a diversified trading firm's gauntlet: probability brainteasers, mental math, market-making mechanics, and a deep technical conversation about your interests. The firm runs separate hiring loops for the Chicago, New York, and London offices, with some role specialization by region.
By Alex Chen, Founder, InterviewChamp.AI · Last verified
Loop overview
Recruiter call → 60-min HackerRank coding/math test → first-round phone (probability + mental math) → onsite of three to four rounds: probability, mental math sprint, market-making game, technical/research conversation, behavioral. Some new-grads also get a 'puzzle round' with no time limit. Timeline 4-6 weeks. DRW emphasizes culture fit heavily — a great technical performer with weak fit signal can still be rejected.
Behavioral (3)
Tell me about a time you had to learn something hard and apply it quickly.
Frequently askedOutline
STAR. Pick a real episode of self-directed learning — a research project, hackathon, or course where you ramped on a new technique. Walk through the learning process, the application, and the outcome. DRW values intellectual curiosity and quick ramp.
You are market-making on a binary outcome with 50/50 prior. A customer comes in willing to bet $1000. How do you price the bid and ask?
Frequently askedOutline
Start with a wide spread — maybe 45 bid, 55 ask. Reasoning: customer might know something you don't (adverse selection). After they trade, update your prior based on which side they took. If they buy at 55, raise both bid and ask. Discuss how you balance spread width vs trade frequency. DRW wants to see your thinking, not a memorized formula.
Why DRW rather than a hedge fund or a tech firm?
Frequently askedOutline
Specific reasons: trading firm rather than asset management (compensation tied to your P&L not AUM); diversified across asset classes including crypto, fixed income, commodities; long-tenured firm with low turnover; collegial culture compared to some competitors. Reference any DRW-specific content you have read. Avoid the 'high pay' lead.
Coding (LeetCode patterns) (2)
Implement a function that returns the moving average over a sliding window of size k.
Frequently askedOutline
Maintain a deque of the last k values and a running sum. On each new value: append, update sum. If deque exceeds k, pop the oldest and subtract from sum. Average = sum / current_size. O(1) per update. Mention edge cases: warmup before k values arrive.
Given a stream of integers, find the median at any point in O(log n) per update.
Occasionally askedOutline
Two heaps: max-heap for lower half, min-heap for upper half. Maintain invariant |sizes differ by ≤ 1|. Insert: add to one heap, rebalance by moving top across if needed. Median: if even, average tops; if odd, return top of larger. Walk through with a small sequence of inserts. Code it up cleanly.
Technical (5)
You roll a fair 6-sided die 3 times. What is the probability that the second roll is higher than the first, AND the third is higher than the second?
Frequently askedOutline
P(all three distinct AND in increasing order) = P(distinct) · P(in order | distinct). Number of strictly increasing 3-tuples from {1..6} is C(6,3) = 20. Total outcomes 6^3 = 216. So probability = 20/216 = 5/54. Alternative: directly count cases where r1<r2<r3. Walk through the combinatorial logic explicitly.
I have a bag with 99 black balls and 1 white ball. I pick balls one at a time without replacement. What is the probability that the white ball is the last one drawn?
Frequently askedOutline
By symmetry, each position is equally likely for the white ball. So P(last) = 1/100. State the symmetry argument upfront — direct enumeration takes forever. Generalize: in a uniformly random permutation, every position is equally likely for any specific element.
Quick: 17 × 23?
Frequently askedOutline
Difference of squares trick: 17·23 = (20-3)(20+3) = 400 - 9 = 391. State the trick briefly, give the answer. DRW expects sub-5-second responses on these. Practice (a-b)(a+b) for a,b near round numbers.
I show you a card from a standard deck. You guess heads or tails based on whether the next card will be higher or lower. With perfect strategy, what is your expected number of correct guesses out of 51 guesses?
Occasionally askedOutline
Strategy: guess higher if more high cards remain, lower if more low cards. Expected accuracy depends on the deck composition at each step. The exact expected value is around 30 correct guesses out of 51 — computed by dynamic programming over deck states. State the strategy clearly; the exact number is less important than showing the optimization framework.
What is the expected number of rolls of a fair 6-sided die to see all 6 faces (coupon collector problem)?
Frequently askedOutline
Coupon collector formula. E = n · H_n where H_n is the n-th harmonic number. For n=6: E = 6 · (1 + 1/2 + 1/3 + 1/4 + 1/5 + 1/6) = 6 · 2.45 = 14.7. Derive: after collecting k distinct, probability of next being new is (n-k)/n, expected wait is n/(n-k). Sum over k = 0..n-1. State the derivation upfront.
DRW interview tips
- Mental math sprints are a real round. Drill until two-digit multiplication, percent conversions, and 1/n decimals are reflexive.
- DRW interviewers love probability puzzles with a symmetry or invariant trick. Always pause to look for clean structure before brute-force algebra.
- Market-making questions test risk intuition. Start wide, tighten as you learn. Embrace the 'I don't know yet' framing.
- Be honest about asset class interests. DRW trades commodities, fixed income, energy, equities, and crypto. If you have specific interest in one area, say so — it can affect team placement.
- Behavioral rounds are not perfunctory. DRW screens for low-ego intellectual curiosity. Storytellers and self-promoters fail here.
Frequently asked questions
How long is DRW's quant interview process in 2026?
Most candidates report 4-6 weeks from initial contact to offer. Compressed onsites in Chicago can deliver same-week decisions for strong performers.
What is DRW's headcount?
Approximately 2,000 employees globally as of 2026, with Chicago as the main hub. Mid-sized for a quant trading firm.
Does DRW require finance knowledge for new-grad quant roles?
No. The firm hires for quantitative ability and trains on finance. Basic awareness of market structure helps in fit rounds.
What is DRW's primary trading strategy?
Diversified market-making and prop trading across asset classes: equities, fixed income, FX, commodities, crypto, and energy. Strategies range from HFT to longer-horizon prop bets.
Can I retake DRW's interview after rejection?
Yes, after a 12-month cooldown. The firm keeps detailed interview notes.
Practice these live with InterviewChamp.AI
Real-time AI interview assistant that listens to your loop and helps you structure answers under pressure.
Practice these live with InterviewChamp.AI →