CFA·CFA-L1 · CFA Level I·UnitCFA-L1 · Unit 02Access: Premium
Quantitative Methods
Prepare for Quantitative Methods with CFA practice questions covering 10 topics. Part of CFA Level I — build your knowledge and track your progress with PopCFA.
What’s in it.
10 topics- Topic 01
Time Value of Money
54 questions - Topic 02
Discounted Cash Flow Applications
24 questions - Topic 03
Statistical Concepts and Data
54 questions - Topic 04
Probability Concepts
24 questions - Topic 05
Probability Distributions
24 questions - Topic 06
Sampling and Estimation
23 questions - Topic 07
Hypothesis Testing
24 questions - Topic 08
Simple Linear Regression
69 questions - Topic 09
Multiple Regression
24 questions - Topic 10
Big Data and Machine Learning in Investment Analysis
39 questions
Sample questions
3 of manyA few questions from this unit, with the answer and a full explanation. The complete bank is available when you start practising.
A regression output table for a 48-observation sample reports: , ; , ; R² = 0.52; SEE = 3.4. At the 5% significance level (df = 46, critical t ≈ 2.01), which of the following conclusions is correct?
- The intercept is significant () and the slope is not ()
- The slope is significant (), but the intercept is not (); R² = 0.52 means X explains 52% of variation in YCorrect answer
- Both the slope and intercept are statistically significant at the 5% level
- Neither the slope nor the intercept is statistically significant because R² = 0.52 is below 0.60
ExplanationSlope t-statistic: . Since $6.25 > 2.01$, the slope is statistically significant at the 5% level.
Intercept t-statistic: . Since $1.40 < 2.01H_0: \beta_0 = 0$.
R² = 0.52: 52% of variation in Y is explained by X. This is a useful but not outstanding fit; the threshold for 'useful' is context-dependent, not fixed at 0.60 or any other number.
SEE = 3.4 is the typical prediction error magnitude, not a criterion for model validity.
Two banks offer savings accounts. Bank A offers a stated annual rate of 5% compounded semi-annually. Bank B offers a stated annual rate of 4.95% compounded monthly. Which bank has the higher effective annual rate, and by how many basis points?
- Bank B has the higher EAR by approximately 3 basis points.
- Bank A has the higher EAR by approximately 3 basis points; EAR_A ≈ 5.063% vs EAR_B ≈ 5.061%.Correct answer
- Both banks have the same EAR because the stated rates are almost identical.
- Bank A has the higher EAR by approximately 50 basis points because the stated rates differ by 5 basis points.
Explanation. ... more precisely: : using the approximation . More exactly: . So . In this case, both EARs are very close—the 5 basis point lower stated rate of Bank B is almost exactly offset by the higher frequency of monthly vs. semi-annual compounding. The difference is only about 1–3 basis points, with Bank A being slightly higher.
In k-fold cross-validation, a dataset is divided into k equal subsets. Which statement correctly describes how the model is trained and evaluated?
- Each of the k subsets is independently used to train a separate model, and the k models are averaged to produce a single prediction
- The first k−1 subsets are used for training and the kth subset is always held out as the test set, regardless of the number of runs
- The model is trained k times; each time, one different subset is held out for validation while the remaining k−1 subsets form the training set, and performance is averaged across all k runsCorrect answer
- The dataset is split into k equally sized training sets; the model is trained k times and the best-performing run is selected as the final model
ExplanationIn k-fold cross-validation, the dataset is split into k subsets (folds). The model is trained k separate times:
- In run 1, fold 1 is the validation set; folds 2 through k are the training set.
- In run 2, fold 2 is the validation set; all other folds are training data.
- This continues until each fold has served once as the validation set.
Performance metrics (e.g., accuracy, R²) are averaged over all k runs to produce a robust estimate of out-of-sample performance. The holdout test set remains separate from this entire process.