Q. 1
Statistics
Difficulty: easy
(1 Mark)
In the classical simple linear regression model $Y_i = \beta_0 + \beta_1 X_i + u_i$, what does the Gauss-Markov Theorem state regarding the Ordinary Least Squares (OLS) estimator $\hat{\beta}_1$?
💡
Step-by-Step Explanation & Concept Rationale
The Gauss-Markov theorem proves that under homoscedasticity, exogeneity, and no autocorrelation, OLS estimators $\hat{\boldsymbol{\beta}}$ achieve the lowest sampling variance among all possible linear unbiased estimators (BLUE).
Q. 2
Statistics
Difficulty: easy
(1 Mark)
In the matrix formulation of Multiple Linear Regression $\mathbf{y} = \mathbf{X}\boldsymbol{\beta} + \mathbf{u}$, what is the OLS estimator $\hat{\boldsymbol{\beta}}$?
💡
Step-by-Step Explanation & Concept Rationale
Minimizing the sum of squared residuals $\mathbf{u}^T \mathbf{u} = (\mathbf{y} - \mathbf{X}\boldsymbol{\beta})^T (\mathbf{y} - \mathbf{X}\boldsymbol{\beta})$ with respect to $\boldsymbol{\beta}$ yields the normal equations $(\mathbf{X}^T \mathbf{X})\hat{\boldsymbol{\beta}} = \mathbf{X}^T \mathbf{y}$, giving $\hat{\boldsymbol{\beta}} = (\mathbf{X}^T \mathbf{X})^{-1} \mathbf{X}^T \mathbf{y}$.
Q. 3
Statistics
Difficulty: medium
(1 Mark)
What is the Variance-Covariance matrix of the OLS estimator $\hat{\boldsymbol{\beta}}$ under standard homoscedastic assumptions?
💡
Step-by-Step Explanation & Concept Rationale
Since $\hat{\boldsymbol{\beta}} = \boldsymbol{\beta} + (\mathbf{X}^T \mathbf{X})^{-1}\mathbf{X}^T\mathbf{u}$, $\text{Var}(\hat{\boldsymbol{\beta}}) = (\mathbf{X}^T\mathbf{X})^{-1}\mathbf{X}^T [\text{Var}(\mathbf{u})] \mathbf{X}(\mathbf{X}^T\mathbf{X})^{-1} = \sigma^2 (\mathbf{X}^T \mathbf{X})^{-1}$.
Q. 4
Statistics
Difficulty: easy
(1 Mark)
What is the Coefficient of Determination ($R^2$) in a linear regression model?
💡
Step-by-Step Explanation & Concept Rationale
$R^2 = \frac{SSR}{SST} = 1 - \frac{SSE}{SST}$ quantifies the percentage of variance in the response variable accounted for by the explanatory predictors in the model, bounded in $[0, 1]$.
Q. 5
Statistics
Difficulty: medium
(1 Mark)
Why is the 'Adjusted $R^2$' ($\bar{R}^2$) used instead of standard $R^2$ when comparing multiple regression models with different numbers of predictors?
💡
Step-by-Step Explanation & Concept Rationale
Standard $R^2$ mechanically inflates as more regressors are added, even if they are noise. Adjusted $R^2$ adjusts for degrees of freedom ($df$), increasing only if the new predictor improves the model more than expected by chance.
Q. 6
Statistics
Difficulty: easy
(1 Mark)
What is the relationship between the F-statistic for overall model significance in simple linear regression and the individual t-statistic for the slope coefficient?
💡
Step-by-Step Explanation & Concept Rationale
In simple linear regression ($k = 1$ predictor), testing $H_0: \beta_1 = 0$ via the two-sided t-test ($df = n-2$) is mathematically identical to the overall ANOVA F-test ($df_1 = 1, df_2 = n-2$), with $F = t^2$.
Q. 7
Statistics
Difficulty: medium
(1 Mark)
What is the Hat Matrix $\mathbf{H}$ in linear regression, defined as $\mathbf{H} = \mathbf{X}(\mathbf{X}^T \mathbf{X})^{-1} \mathbf{X}^T$?
💡
Step-by-Step Explanation & Concept Rationale
The Hat matrix (projection matrix) maps observed values to fitted values: $\hat{\mathbf{y}} = \mathbf{H}\mathbf{y}$. Its diagonal elements $h_{ii}$ measure the 'leverage' of each observation in predictor space.
Q. 8
Statistics
Difficulty: hard
(1 Mark)
What is the sum of the diagonal elements (trace) of the Hat Matrix $\mathbf{H} = \mathbf{X}(\mathbf{X}^T \mathbf{X})^{-1} \mathbf{X}^T$ with $p = k + 1$ parameters?
💡
Step-by-Step Explanation & Concept Rationale
Using cyclic property of trace: $\text{tr}(\mathbf{H}) = \text{tr}(\mathbf{X}(\mathbf{X}^T \mathbf{X})^{-1} \mathbf{X}^T) = \text{tr}((\mathbf{X}^T \mathbf{X})^{-1} \mathbf{X}^T \mathbf{X}) = \text{tr}(\mathbf{I}_p) = p$. The average leverage is $\bar{h} = p / n$.
Q. 9
Statistics
Difficulty: medium
(1 Mark)
An observation is commonly flagged as having 'High Leverage' in regression diagnostics if its diagonal Hat value $h_{ii}$ exceeds what threshold?
💡
Step-by-Step Explanation & Concept Rationale
Since the average leverage is $\bar{h} = p/n$, observations with $h_{ii} > 2p/n$ (or $3p/n$) are considered high leverage points that exert disproportionate potential influence on the fitted plane.
Q. 10
Statistics
Difficulty: medium
(1 Mark)
What does Cook's Distance ($D_i$) measure in regression diagnostics?
💡
Step-by-Step Explanation & Concept Rationale
Cook's Distance combines both the standardized residual (outlier in $Y$) and the leverage $h_{ii}$ (outlier in $X$) to measure how much all regression predictions shift when point $i$ is omitted. $D_i > 1$ or $D_i > 4/n$ indicates high influence.
Q. 11
Statistics
Difficulty: easy
(1 Mark)
What is 'Multicollinearity' in multiple regression?
💡
Step-by-Step Explanation & Concept Rationale
Multicollinearity occurs when predictors are highly intercorrelated, making the $(\mathbf{X}^T\mathbf{X})$ matrix near-singular, which inflates standard errors of regression coefficients without biasing point estimates.
Q. 12
Statistics
Difficulty: easy
(1 Mark)
What is the Variance Inflation Factor (VIF) for predictor $X_j$ defined as?
💡
Step-by-Step Explanation & Concept Rationale
The VIF measures how much the variance of coefficient $\hat{\beta}_j$ is inflated due to multicollinearity: $\text{VIF}_j = \frac{1}{1 - R_j^2}$. A common rule of thumb considers $\text{VIF} > 5$ or $10$ as evidence of severe multicollinearity.
Q. 13
Statistics
Difficulty: easy
(1 Mark)
What is 'Tolerance' in regression diagnostics?
💡
Step-by-Step Explanation & Concept Rationale
Tolerance is $\text{Tol}_j = 1 - R_j^2$. A tolerance below $0.10$ or $0.20$ indicates severe collinearity with other explanatory variables.
Q. 14
Statistics
Difficulty: easy
(1 Mark)
What is 'Heteroscedasticity' in regression modeling?
💡
Step-by-Step Explanation & Concept Rationale
Heteroscedasticity means the error terms have non-constant variance (e.g., variance of income errors grows as income increases), rendering standard OLS standard errors invalid and test statistics biased.
Q. 15
Statistics
Difficulty: medium
(1 Mark)
What are the consequences of ignoring Heteroscedasticity when using Ordinary Least Squares (OLS)?
💡
Step-by-Step Explanation & Concept Rationale
Under heteroscedasticity, OLS point estimates remain unbiased ($E[\hat{\boldsymbol{\beta}}] = \boldsymbol{\beta}$), but standard formula for $\text{Var}(\hat{\boldsymbol{\beta}})$ is wrong, distorting p-values. Weighted Least Squares (WLS) or Huber-White robust SEs are required.
Q. 16
Statistics
Difficulty: medium
(1 Mark)
Which of the following statistical tests is specifically designed to detect Heteroscedasticity in regression models?
💡
Step-by-Step Explanation & Concept Rationale
The Breusch-Pagan test regresses squared OLS residuals on the independent variables (or fitted values), while White's test includes squares and cross-products of regressors to test for general forms of heteroscedasticity.
Q. 17
Statistics
Difficulty: hard
(1 Mark)
What is White's Heteroscedasticity-Consistent Covariance Matrix Estimator (HCCME / 'Robust Standard Errors')?
💡
Step-by-Step Explanation & Concept Rationale
Halbert White (1980) formulated the sandwich estimator $(X^TX)^{-1}(X^T \hat{\boldsymbol{\Omega}} X)(X^TX)^{-1}$, providing asymptotically valid standard errors and hypothesis tests even when the exact functional form of heteroscedasticity is unknown.
Q. 18
Statistics
Difficulty: easy
(1 Mark)
What is 'Autocorrelation' (Serial Correlation) in time series regression?
💡
Step-by-Step Explanation & Concept Rationale
Autocorrelation occurs when regression disturbances in period $t$ are correlated with disturbances in earlier periods (e.g., $u_t = \rho u_{t-1} + \epsilon_t$), common in macro-economic and environmental time-series data.
Q. 19
Statistics
Difficulty: medium
(1 Mark)
What is the range and ideal null-value of the Durbin-Watson statistic ($d$) for detecting first-order autocorrelation in regression residuals?
💡
Step-by-Step Explanation & Concept Rationale
The Durbin-Watson statistic is $d = \frac{\sum_{t=2}^T (e_t - e_{t-1})^2}{\sum_{t=1}^T e_t^2} \approx 2(1 - \hat{\rho})$. $d \approx 2$ means no autocorrelation; $d \approx 0$ indicates strong positive autocorrelation; $d \approx 4$ indicates strong negative autocorrelation.
Q. 20
Statistics
Difficulty: hard
(1 Mark)
When is the Durbin-Watson test INVALID for testing serial correlation?
💡
Step-by-Step Explanation & Concept Rationale
If a lagged dependent variable $Y_{t-1}$ is included as a predictor, the Durbin-Watson statistic is severely biased toward 2 (masking true serial correlation). The Breusch-Godfrey LM test is the general standard.
Q. 21
Statistics
Difficulty: hard
(1 Mark)
What are Newey-West Standard Errors (HAC - Heteroscedasticity and Autocorrelation Consistent)?
💡
Step-by-Step Explanation & Concept Rationale
Newey-West (1987) HAC standard errors use a Bartlett kernel weighting scheme to produce positive semi-definite covariance estimates robust to simultaneous heteroscedasticity and autocorrelation in time-series OLS.
Q. 22
Statistics
Difficulty: hard
(1 Mark)
What does the Ramsey RESET (Regression Equation Specification Error Test) test for?
💡
Step-by-Step Explanation & Concept Rationale
Ramsey's RESET tests for omitted non-linearities and functional form misspecification by adding powers of the fitted values $(\hat{y}_i^2, \hat{y}_i^3)$ to the auxiliary regression and testing their joint significance via F-test.
Q. 23
Statistics
Difficulty: easy
(1 Mark)
In Binary Logistic Regression, what is the 'Logit' Link Function defined as for probability $p = P(Y = 1 \mid X)$?
💡
Step-by-Step Explanation & Concept Rationale
The logit function is the natural logarithm of the odds: $\text{logit}(p) = \ln\left(\frac{p}{1-p}\right)$. It maps probability $p \in (0, 1)$ to $(-\infty, \infty)$, enabling linear parameterization.
Q. 24
Statistics
Difficulty: medium
(1 Mark)
In a Logistic Regression model $\ln\left(\frac{p}{1-p}\right) = \beta_0 + \beta_1 X$, how is the slope coefficient $\beta_1$ interpreted?
💡
Step-by-Step Explanation & Concept Rationale
In logistic regression, exponentiating the slope gives the Odds Ratio: $\text{OR} = e^{\beta_1}$. A one-unit increase in $X$ multiplies the odds of the outcome by $e^{\beta_1}$.
Q. 25
Statistics
Difficulty: medium
(1 Mark)
What estimation method is standard for fitting Logistic Regression models?
💡
Step-by-Step Explanation & Concept Rationale
Because the binary response $Y_i \sim \text{Bernoulli}(p_i)$ violates OLS homoscedasticity and normality, Logistic Regression parameters are estimated by maximizing the Bernoulli log-likelihood via Newton-Raphson / IRLS.
Study Stream Progress:
Showing 25 of 90 Questions (28%)
Jump to:
Ready to Test Your Retention & Speed?
Now that you have reviewed the study questions and rationales, test yourself in our interactive 1-by-1 practice engine or take the full official timed mock exam.