Questions On Quant Interviews |work|: 150 Most Frequently Asked
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".
Report: 150 Most Frequently Asked Questions on Quant Interviews
Category A: Dice & Coins
Sample Questions: 11. What is the expected value of the roll of a single die? 12. You roll two dice. What is the probability that the sum is greater than 7? 13. What is the expected number of rolls to get two "6s" in a row? 14. You toss a coin until you see Head-Head (HH) or Head-Tail (HT). Which sequence has a higher probability of appearing first, and what is the expected number of tosses for each? 15. Poisson Distribution: If buses arrive following a Poisson process with rate $\lambda$, what is the expected wait time for a passenger arriving at a random time? 150 Most Frequently Asked Questions On Quant Interviews
2. Brain Teasers & Puzzles (20 questions)
| # | Question | Difficulty | Key Insight | |---|----------|------------|--------------| | 36 | How many times a day do clock hands overlap? | ★ | 22 times | | 37 | You have a 3-gallon and 5-gallon jug. How to measure 4 gallons? | ★ | Fill 5, pour to 3, empty 3, pour remaining 2 into 3, fill 5, pour 1 into 3, left 4 | | 38 | 100 prisoners and a light bulb. Find a strategy to know all have been in room. | ★★★ | Designated counter | | 39 | You have 12 balls, one heavier or lighter, balance scale. Minimum weighings? | ★★ | 3 weighings | | 40 | Why are manhole covers round? | ★ | Can’t fall through | | 41 | How many golf balls fit in a Boeing 747? | ★ | Estimate volume & packing fraction (~0.74) | | 42 | You have a 7-minute and 4-minute hourglass. How to measure 9 minutes? | ★★ | Start both, flip 4 when done, etc. | | 43 | Two trains 100 miles apart approach at 50 mph each. A bee flies 75 mph back and forth. Total bee distance? | ★ | 75 miles (bee flies for 1 hour) | | 44 | You have 10 stacks of 10 coins each, one stack all counterfeit (lighter). One weighing on a scale? | ★★ | Take 1 from stack 1, 2 from stack 2, etc. | | 45 | You have a 5x5 grid of lights. Pressing toggles row & col. Can you turn all off? | ★★ | Linear algebra mod 2 | | 46 | Three ants on corners of triangle, move along edges. Probability no collision? | ★★ | 1/4 | | 47 | You have 2 eggs and 100 floors. Find highest safe floor. Minimum drops? | ★★ | 14 | | 48 | A rope burns unevenly in 60 mins. How to measure 45 mins? | ★ | Light both ends of one rope, one end of other | | 49 | How many trailing zeros in 100! ? | ★ | floor(100/5)+floor(100/25)=24 | | 50 | You have 4 liters of water, need 2 liters. You have 3L and 5L jugs. | ★ | Fill 5, pour to 3, leave 2 in 5 | | 51 | Light switches and bulbs in another room. One flip. How to match? | ★ | Turn one on for long, then off, another on, go check | | 52 | You have 8 coins, one lighter, 2 weighings on balance scale? | ★★ | Divide into 3,3,2 | | 53 | One honest and one liar guard, two doors (life/death). One question? | ★ | Ask “What would the other guard say is the safe door?” | | 54 | You have 9 marbles, one heavier, balance scale in 2 weighings? | ★★ | 3 vs 3 first | | 55 | 100 coins, one counterfeit lighter, no scale, just balance? | ★★ | Binary search |
Purpose
To help candidates prepare for quantitative interviews at hedge funds, prop trading firms, and investment banks (e.g., Jane Street, Citadel, Two Sigma, Optiver, Goldman Sachs).
Category B: Continuous Probability & Distributions
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.
3. Statistics (25 questions)
| # | Question | Difficulty | Key Idea | |---|----------|------------|-----------| | 56 | What is the difference between correlation and causation? | ★ | Example: ice cream sales and drowning | | 57 | What is a p-value? | ★ | P(data | null) | | 58 | Explain bias-variance tradeoff. | ★★ | Underfitting vs overfitting | | 59 | What is MLE? Give example for normal distribution. | ★★ | Sample mean is MLE for μ | | 60 | You have i.i.d. N(μ,1). Find 95% CI for μ. | ★ | x̄ ± 1.96/√n | | 61 | What is a consistent estimator? | ★ | Converges in probability to true value | | 62 | What is the Central Limit Theorem? | ★ | Sum of i.i.d. → normal | | 63 | You have two samples. Test if means equal. Which test? | ★ | t-test | | 64 | What is the difference between parametric and nonparametric tests? | ★ | Distribution assumption | | 65 | What is a Type I error? Type II? | ★ | False positive, false negative | | 66 | What is power of a test? | ★ | 1 – P(Type II) | | 67 | What is the standard error of the mean? | ★ | σ/√n | | 68 | What is a confidence interval? | ★ | Range containing true parameter with certain probability | | 69 | What is a chi-square test used for? | ★ | Goodness of fit, independence | | 70 | What is the difference between regression and classification? | ★ | Continuous vs categorical output | | 71 | What is overfitting? How to detect? | ★ | High train, low test performance | | 72 | What is cross-validation? | ★★ | K-fold | | 73 | What is regularization? L1 vs L2? | ★★ | Lasso vs Ridge | | 74 | What is a sufficient statistic? | ★★ | Contains all info about parameter | | 75 | What is the Cramér-Rao lower bound? | ★★★ | Lower bound on variance of unbiased estimator | | 76 | You have data with outliers. Robust estimator for mean? | ★ | Median | | 77 | What is the difference between likelihood and probability? | ★ | Likelihood = P(data | parameter) | | 78 | What is the Law of Large Numbers? | ★ | Sample mean → population mean | | 79 | What is the difference between correlation and covariance? | ★ | Correlation is normalized covariance | | 80 | How do you test if a coin is fair? | ★ | Binomial test |
Epilogue – The 150 Questions in Context
Those 150 questions aren’t just trivia. They test:
- Mental agility (jug problems, mental math)
- Probability intuition (coin flips, dice, normals)
- Coding fluency (VWAP, streaming algorithms)
- Options & hedging (greeks, market making)
- Behavioral ("Why quant?" – tie to passion, not just money)
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."
Introduction
Quantitative interviews, also known as quant interviews, are a crucial part of the hiring process for quantitative analysts, data scientists, and other roles that require strong mathematical and analytical skills. These interviews are designed to assess a candidate's technical knowledge, problem-solving skills, and ability to communicate complex ideas. In this write-up, we will cover 150 of the most frequently asked questions in quant interviews, providing you with a comprehensive resource to help you prepare.
Section 1: Mathematical Foundations (30 questions) Preparing for a quantitative finance interview is a
- What is the difference between a limit and an infinite series?
- How do you calculate the derivative of a function?
- What is the concept of convexity in mathematics?
- Can you explain the difference between a vector space and a subspace?
- What is the definition of a matrix's determinant? ...
- What is the Central Limit Theorem?
- Can you explain the concept of regression analysis?
- How do you calculate the eigenvalues and eigenvectors of a matrix?
- What is the difference between a parametric and non-parametric test?
- Can you define a stochastic process?
Section 2: Probability and Statistics (40 questions)
- What is the definition of probability?
- Can you explain the difference between a random variable and a probability distribution?
- What is the Bayes' theorem?
- How do you calculate the expected value of a random variable?
- What is the difference between a discrete and continuous uniform distribution? ...
- Can you explain the concept of correlation and its limitations?
- What is the definition of a p-value?
- How do you calculate the variance of a portfolio?
- What is the difference between a Type I and Type II error?
- Can you define a confidence interval?
Section 3: Financial Markets and Instruments (30 questions)
- What is the difference between a stock and a bond?
- Can you explain the concept of arbitrage?
- What is the definition of a derivative instrument?
- How do you calculate the present value of a cash flow?
- What is the difference between a call and put option? ...
- Can you explain the concept of risk-neutral valuation?
- What is the definition of a hedge fund?
- How do you calculate the Greeks (Delta, Gamma, Theta, Vega)?
- What is the difference between a long and short position?
- Can you define a swap contract?
Section 4: Data Analysis and Programming (30 questions)
- What is the definition of data mining?
- Can you explain the difference between a supervised and unsupervised learning algorithm?
- What is the definition of overfitting?
- How do you implement a linear regression model in Python/R?
- What is the difference between a data frame and a matrix? ...
- Can you explain the concept of data visualization?
- What is the definition of a SQL query?
- How do you optimize a portfolio using optimization techniques?
- What is the difference between a Jupyter Notebook and a script?
- Can you define a Monte Carlo simulation?
Section 5: Behavioral and Cultural Fit Questions (10 questions)
- Can you tell me about a time when you had to work with a difficult team member?
- How do you handle stress and pressure in the workplace?
- Can you describe a situation where you had to communicate complex ideas to a non-technical audience?
- What are your long-term career goals?
- Can you tell me about a project you worked on that you're particularly proud of? ...
- Why do you want to work in this industry, and what do you hope to achieve?
Conclusion
Quantitative interviews can be challenging, but with preparation and practice, you can increase your chances of success. This write-up covers 150 of the most frequently asked questions in quant interviews, providing you with a comprehensive resource to help you prepare. Remember to practice your technical skills, review common interview questions, and develop a strong understanding of mathematical and analytical concepts. Good luck with your interviews!
Here are some general tips to help you prepare:
- Review mathematical and statistical concepts, including calculus, linear algebra, probability, and statistics.
- Practice coding in languages such as Python, R, or MATLAB.
- Familiarize yourself with financial markets and instruments, including stocks, bonds, options, and derivatives.
- Develop a strong understanding of data analysis and visualization techniques.
- Practice communicating complex ideas to non-technical audiences.
- Prepare examples of past experiences and projects to showcase your skills and accomplishments.
By following these tips and reviewing the questions outlined above, you'll be well-prepared to tackle even the most challenging quant interviews.
150 Most Frequently Asked Questions on Quant Interviews Dan Stefanica
, Rados Radoicic, and Tai-Ho Wang is widely considered an essential "pocket guide" for candidates preparing for quantitative roles in finance. The book is uniquely structured to mimic the concise, direct-to-the-point Report: 150 Most Frequently Asked Questions on Quant
style expected in actual interviews. The latest edition (Third Edition, 2024) expanded the collection to over 200 questions to include emerging trends like Machine Learning. Core Topics Covered
The text organizes questions into distinct mathematical and technical domains:
"150 Most Frequently Asked Questions on Quant Interviews" by Stefanica, Radoičić, and Wang is a comprehensive, third-edition guide tailored for quantitative finance roles, covering topics from mathematics to machine learning. Designed for interview prep, the book offers concise, technical solutions to questions in areas like C++ programming, financial instruments, and brainteasers. Explore the guide and its sample questions on the Financial Engineering Press website Amazon.com
Section 1: Mathematical Concepts (1-25)
- What is the difference between a limit and a derivative?
- How do you calculate the derivative of $x^n$?
- What is the chain rule in calculus?
- Can you explain the concept of convexity in finance?
- How do you price a call option using the Black-Scholes model?
- What is the difference between a parametric and non-parametric test?
- How do you calculate the expected value of a random variable?
- What is the central limit theorem?
- Can you explain the concept of regression analysis?
- How do you calculate the correlation coefficient between two variables?
- What is the difference between a hypothesis test and a confidence interval?
- Can you explain the concept of time series analysis?
- How do you calculate the present value of a cash flow?
- What is the difference between a risk-neutral and risk-averse investor?
- Can you explain the concept of portfolio optimization?
- How do you calculate the Sharpe ratio?
- What is the difference between a long and short position?
- Can you explain the concept of hedging?
- How do you calculate the Greeks (Delta, Gamma, Theta, Vega)?
- What is the difference between a binomial and trinomial model?
- Can you explain the concept of stochastic processes?
- How do you calculate the probability of a default?
- What is the difference between a credit and interest rate risk?
- Can you explain the concept of Value-at-Risk (VaR)?
- How do you calculate the expected shortfall?
Section 2: Programming and Data Analysis (26-50)
- What programming languages are commonly used in quant finance?
- Can you explain the concept of object-oriented programming?
- How do you implement a Monte Carlo simulation in Python?
- What is the difference between a dataframe and a list in Python?
- Can you explain the concept of data visualization?
- How do you perform a data cleaning and preprocessing?
- What is the difference between a supervised and unsupervised learning algorithm?
- Can you explain the concept of machine learning?
- How do you implement a linear regression model in R?
- What is the difference between a regression and classification problem?
- Can you explain the concept of feature engineering?
- How do you perform a backtest on a trading strategy?
- What is the difference between a walk-forward and backtest?
- Can you explain the concept of risk management?
- How do you calculate the maximum drawdown?
- What is the difference between a parametric and non-parametric bootstrap?
- Can you explain the concept of statistical arbitrage?
- How do you implement a trading strategy using Python?
- What is the difference between a vector and matrix in MATLAB?
- Can you explain the concept of data mining?
- How do you perform a factor analysis?
- What is the difference between a t-test and ANOVA?
- Can you explain the concept of clustering analysis?
- How do you implement a decision tree in Python?
- What is the difference between a random forest and gradient boosting?
Section 3: Financial Markets and Instruments (51-75)
- What is the difference between a stock and bond?
- Can you explain the concept of financial markets?
- How do you calculate the yield to maturity of a bond?
- What is the difference between a call and put option?
- Can you explain the concept of options trading?
- How do you calculate the implied volatility of an option?
- What is the difference between a futures and forward contract?
- Can you explain the concept of swaps?
- How do you calculate the value of a swap?
- What is the difference between a credit default swap and total return swap?
- Can you explain the concept of mortgage-backed securities?
- How do you calculate the prepayment risk of a mortgage-backed security?
- What is the difference between a collateralized debt obligation and collateralized loan obligation?
- Can you explain the concept of asset-backed securities?
- How do you calculate the value of an asset-backed security?
- What is the difference between a hedge fund and mutual fund?
- Can you explain the concept of private equity?
- How do you calculate the return on investment of a private equity fund?
- What is the difference between a venture capital and growth equity investment?
- Can you explain the concept of distressed debt investing?
- How do you calculate the expected return of a portfolio?
- What is the difference between a long-only and long-short portfolio?
- Can you explain the concept of portfolio construction?
- How do you calculate the tracking error of a portfolio?
- What is the difference between a benchmark and a universe?
Section 4: Behavioral and Cultural Fit Questions (76-100)
- Can you tell me about a time when you overcame a difficult challenge?
- How do you handle stress and pressure in the workplace?
- Can you describe a project you worked on and your role in it?
- How do you prioritize tasks and manage your time?
- Can you tell me about a time when you had to communicate complex ideas to a non-technical audience?
- How do you handle feedback and criticism?
- Can you describe a situation where you had to work with a difficult team member?
- How do you stay current with industry trends and developments?
- Can you tell me about a time when you identified a business opportunity and how you pursued it?
- How do you handle ambiguity and uncertainty?
- Can you describe a situation where you had to make a difficult decision?
- How do you prioritize your own professional development?
- Can you tell me about a time when you received recognition or an award for your work?
- How do you handle a high-volume workload?
- Can you describe a situation where you had to work with a tight deadline?
- How do you handle conflicting priorities?
- Can you tell me about a time when you went above and beyond for a client or colleague?
- How do you stay organized and manage competing demands?
- Can you describe a situation where you had to negotiate with someone?
- How do you handle a situation where you don't have enough information to make a decision?
- Can you tell me about a time when you had to adapt to a new process or technology?
- How do you prioritize your relationships with colleagues and clients?
- Can you describe a situation where you had to handle a confidential or sensitive issue?
- How do you handle a situation where you are faced with a new or unfamiliar problem?
- Can you tell me about a time when you demonstrated initiative?
Section 5: Advanced Quant Questions (101-150)
- Can you explain the concept of stochastic volatility?
- How do you implement a Heston model?
- What is the difference between a local and stochastic volatility model?
- Can you explain the concept of finite difference methods?
- How do you implement a Monte Carlo simulation for a complex derivative?
- What is the difference between a QMC and MC simulation?
- Can you explain the concept of copula functions?
- How do you implement a copula-based model for credit risk?
- What is the difference between a structural and reduced-form model?
- Can you explain the concept of credit valuation adjustment (CVA)?
- How do you implement a CVA model?
- What is the difference between a debt and equity financing?
- Can you explain the concept of funding valuation adjustment (FVA)?
- How do you implement an FVA model?
- What is the difference between a KVA and MVA?
- Can you explain the concept of market risk management?
- How do you implement a market risk management framework?
- What is the difference between a VaR and ES metric?
- Can you explain the concept of stress testing?
- How do you implement a stress testing framework?
- What is the difference between a liquidity and funding risk?
- Can you explain the concept of operational risk management?
- How do you implement an operational risk management framework?
- What is the difference between a capital and liquidity requirement?
- Can you explain the concept of Basel III regulations?
- How do you implement a Basel III compliant capital framework?
- What is the difference between a credit and market risk capital charge?
- Can you explain the concept of Solvency II regulations?
- How do you implement a Solvency II compliant capital framework?
- What is the difference between a life and non-life insurance risk?
- Can you explain the concept of asset liability management (ALM)?
- How do you implement an ALM framework?
- What is the difference between a duration and convexity measure?
- Can you explain the concept of interest rate risk management?
- How do you implement an interest rate risk management framework?
- What is the difference between a foreign exchange and commodity risk?
- Can you explain the concept of energy risk management?
- How do you implement an energy risk management framework?
- What is the difference between a weather and catastrophe risk?
- Can you explain the concept of pandemic risk management?
- How do you implement a pandemic risk management framework?
- What is the difference between a cyber and data risk?
- Can you explain the concept of IT risk management?
- How do you implement an IT risk management framework?
- What is the difference between a model and parameter risk?
- Can you explain the concept of model validation?
- How do you implement a model validation framework?
- What is the difference between a data and reporting risk?
- Can you explain the concept of data quality management?
- How do you implement a data quality management framework?
This guide provides a comprehensive overview of the types of questions you may be asked in a quant interview. It's essential to review and practice these concepts to increase your chances of success.
