150 Most Frequently Asked Questions On Quant Interviews

A shared screen. Problem: Given a list of 1 million stock trades (timestamp, price, volume), compute the volume-weighted average price (VWAP) for each minute. Then, find the minute with the highest VWAP.

Alex writes clean Python in 10 minutes: uses pandas with resample and groupby. Then he manually implements a rolling window to check for a "price jump" without libraries, showing he understands O(n) time and memory.

The interviewer, Jay, throws a twist: "Now do it in O(1) extra space if data is streaming."

Alex thinks: "Maintain running sum of price*volume and total volume per minute. At end of minute, compute VWAP, compare to max, reset counters."

Jay: "Edge case – minute with zero trades?"

Alex: "Skip it or define VWAP as previous minute’s close? I’d clarify requirements."

Jay grins. "Next."


Those 150 questions aren’t just trivia. They test:

Alex got the offer. And he still occasionally practices those 150 questions – because the next interview might ask: "Why is a stopped clock right twice a day, but a quant is never right twice in a row?"

His answer now: "Because markets adapt. The questions don’t – but your thinking must."

The Ultimate Guide to Quant Interviews: 150 Most Frequently Asked Questions

Quantitative interviews, also known as quant interviews, are a crucial step in the hiring process for quantitative analysts, data scientists, and other roles that require strong mathematical and analytical skills. These interviews are designed to test a candidate's technical knowledge, problem-solving skills, and ability to think on their feet.

In this article, we will provide you with a comprehensive list of 150 frequently asked questions on quant interviews, covering a wide range of topics, including:

Section 1: Mathematical Concepts (30 questions)

Section 2: Programming Languages (20 questions)

Section 3: Data Structures and Algorithms (20 questions)

Section 4: Financial Markets and Instruments (20 questions)

Section 5: Risk Management and Derivatives (20 questions) 150 Most Frequently Asked Questions On Quant Interviews

Section 6: Machine Learning and Data Science (20 questions)

Section 7: Behavioral Questions and Case Studies (20 questions)

Ready to create a quiz? Use Canvas to test your knowledge with a custom quiz Get started

"150 Most Frequently Asked Questions on Quant Interviews" by Stefanica, Radoicic, and Wang is a key preparation resource for quantitative finance roles, covering topics like mathematics, programming, and brainteasers. The third edition (2024) expands on previous versions by adding over 200 questions, including new content on machine learning, option pricing, and stochastic calculus. For more details, visit FE Press.

Preparing for a quantitative finance interview is a marathon of technical rigor, and Dan Stefanica’s " 150 Most Frequently Asked Questions on Quant Interviews

" has long been the "gold standard" for candidates. Originally authored by professors from Baruch College’s elite MFE program, this guide distills the core knowledge needed to land roles at top-tier firms like Goldman Sachs, Jane Street, and Two Sigma. Essential Prep Topics

The book and current industry trends categorize the "must-know" material into several distinct technical pillars:

Probability & Stochastic Calculus: Expect questions on discrete probability, random walks, martingales, and Brownian motion.

Brainteasers: Riddles designed to test your ingenuity under pressure, such as the "manhole cover" logic or "light switch" puzzles.

Calculus & Differential Equations Mastery: Interviewers frequently test your ability to find critical points, solve first-order linear ODEs, and apply multivariable calculus to financial model optimization.

Finance & Derivatives: Be prepared to explain Black-Scholes limitations, implied volatility, and how to price options, bonds, and swaps.

Programming (C++ & Python): Mastery of data structures, algorithms (LeetCode style), and specific C++ concepts like smart pointers or exception-safe copy constructors is now standard.

Linear Algebra: Focus on covariance and correlation matrices, which are foundational for risk management and machine learning. Strategies for Success

Acing the interview isn't just about getting the right number; it’s about demonstrating a "quantitative toolkit".

Section 1: Mathematical Foundations (30 questions)

Section 2: Financial Markets and Instruments (30 questions)

Section 3: Quantitative Methods (30 questions) A shared screen

Section 4: Risk Management and Regulation (30 questions)

Section 5: Machine Learning and Programming (30 questions)

Section 6: Behavioral Finance and Market Psychology (20 questions)

Section 7: Advanced Topics (10 questions)

This guide provides a comprehensive overview of the types of questions that may be asked in a quant interview, covering a wide range of topics in quantitative finance, including

150 Most Frequently Asked Questions on Quant Interviews by Dan Stefanica, Rados Radoicic, and Tai-Ho Wang is widely considered a staple resource for candidates preparing for quantitative finance roles. It is particularly praised for its practical, interview-style solutions and its coverage of "must-know" technical topics. Key Features

Comprehensive Topic Coverage: Includes mathematics (calculus, linear algebra), financial instruments (options, bonds, swaps), C++ programming, data structures, probability, stochastic calculus, and brainteasers.

Concise Format: Often published as a "pocket guide," making it a portable, high-density resource for quick review.

Direct Solutions: Answers are designed to mirror how they should be delivered in an actual interview—complete but straight to the point. Strengths

Exceptional Stochastic Calculus: Many users specifically recommend the book for its stochastic calculus section, noting it covers Brownian motion and its applications in more detail than similar texts.

Confidence Builder: Working through the full, explicit solutions helps candidates verify their understanding and build confidence in "dreaded" technical sections.

Practicality: It is highly recommended for STEM PhDs and students transitioning into finance who need a structured revision of core mathematical applications. Critical Considerations

Prerequisite Knowledge Required: The book is not self-contained; you need a solid foundation in probability and financial math to follow the solutions, as it is a practice guide rather than a textbook.

Mixed Difficulty Levels: While many find the questions challenging, some recent reviews suggest the earlier edition questions may lean toward the "easy" side for modern, highly competitive interviews.

Third Edition Updates: The newer third edition (released late 2024) significantly expands the content to over 200 questions, adding modern essentials like statistics and machine learning. Top Community-Rated Alternatives If you find this text too straightforward or..

This report categorizes questions by topic, indicates difficulty levels (★ = Easy, ★★ = Intermediate, ★★★ = Hard), and provides concise solution strategies.


Sample Questions: 16. Normal Distribution: If $X \sim N(0,1)$, what is $E[|X|]$? 17. Uniform Distribution: Two random variables $X$ and $Y$ are uniformly distributed on $[0,1]$. What is the probability that the distance between them is greater than 0.5? 18. Exponential Distribution: What is the memoryless property, and how does it apply to radioactive decay modeling? 19. Gaussian Integrals: Calculate the integral $\int_-\infty^\infty x^2 e^-x^2 dx$. 20. PDF/CDF: Given the PDF $f(x) = 2x$ for $x \in [0,1]$, calculate the median and the mean. Those 150 questions aren’t just trivia

Before you get to the complex probability, you must survive the mental arithmetic. Firms expect candidates to perform rapid calculations without a pen and paper. This tests processing speed and the ability to find shortcuts.

Common Question Types:

The Strategy: The key isn't just rote memorization; it is about decomposition. For $24 \times 27$, a quant candidate might think: $24 \times 25 = 600$, plus $24 \times 2 = 48$. Total: 648. You are expected to know your squares up to at least 20 and your prime numbers up to 100.

Now face-to-face with Elena, a poker-faced quant researcher.

Elena: "You flip a fair coin until you see 'Heads, Tails, Heads.' What’s the expected number of flips?"

Alex knows this is a Markov chain classic. He draws states: ∅, H, HT. Let E = expected from start. E = 1 + 0.5E(H) + 0.5E. Then E(H) = 1 + 0.5E(HT) + 0.5E(H). E(HT) = 1 + 0.5*E (since after HT, if T→reset, if H→HTH, game ends). Solving gives E = 10.

Elena: "Fine. Now, I randomly pick a number from a normal distribution N(0,1) and tell you it’s positive. What’s the expected value given that?"

Alex: "That’s the mean of a truncated normal. E[X | X>0] = √(2/π) ≈ 0.798."

Elena: "Why not 0.5?"

Alex: "Because the normal is symmetric but we cut off half the distribution – the expected value shifts to the conditional mean, not the median."

She nods. "Let’s move to coding."


Finally, technical prowess is useless if you lack market intuition. These questions test your commercial awareness.

Typical Questions:

The Strategy: Quant firms make money by understanding correlations. If apples cost more, the cost of apple juice rises, but perhaps demand falls. Which effect dominates? They want to see you build a microeconomic model in your head instantly.


| # | Question | Difficulty | Key Idea | |---|----------|------------|-----------| | 81 | What is an eigenvector and eigenvalue? | ★ | Av = λv | | 82 | How do you compute the determinant of a 3x3 matrix? | ★ | Sarrus rule | | 83 | What is the rank of a matrix? | ★ | Number of linearly independent rows/cols | | 84 | What is the inverse of a matrix? When does it exist? | ★ | A⁻¹A = I, exists if det ≠ 0 | | 85 | What is a positive definite matrix? | ★★ | xᵀAx > 0 for all x ≠ 0 | | 86 | What is the trace of a matrix? | ★ | Sum of diagonal entries | | 87 | What is the gradient of f(x,y) = x² + y²? | ★ | (2x, 2y) | | 88 | What is the Hessian matrix? | ★★ | Matrix of second derivatives | | 89 | What is a convex function? | ★ | f(θx+(1-θ)y) ≤ θf(x)+(1-θ)f(y) | | 90 | What is Lagrange multiplier? | ★★ | For constrained optimization | | 91 | What is the derivative of xᵀAx w.r.t x? | ★★ | 2Ax if A symmetric | | 92 | What is SVD? | ★★★ | A = UΣVᵀ | | 93 | What is the pseudoinverse? | ★★ | For non-square matrices | | 94 | What is the condition number? | ★★ | Sensitivity to input errors | | 95 | What is the difference between row and column space? | ★★ | Span of rows/cols | | 96 | What is a projection matrix? | ★★ | P² = P | | 97 | What is the derivative of log(det(X))? | ★★★ | X⁻ᵀ | | 98 | What is the Jacobian? | ★★ | Matrix of first derivatives | | 99 | What is the Taylor expansion of e^x around 0? | ★ | 1 + x + x²/2! + … | | 100 | What is the gradient descent update rule? | ★ | θ ← θ – α∇J(θ) |


These questions test your raw problem-solving ability and how you structure your thoughts under pressure. They often appear in early-round phone screens.