Unit4 - Subjective Questions

CSE274 • Practice Questions with Detailed Answers

1

Differentiate between Regression and Classification in the context of supervised machine learning. Provide an example for each.

2

Explain the Bias-Variance Tradeoff in regression models. How does model complexity influence this tradeoff?

3

Define Simple Linear Regression. State the hypothesis function and the cost function used to estimate the parameters.

4

Derive the formulas for the optimal coefficients (slope) and (intercept) for Simple Linear Regression using the method of Ordinary Least Squares (OLS).

5

Explain Multiple Linear Regression (MLR) using Matrix Notation. What is the Normal Equation to solve for the coefficients?

6

What are the core assumptions of Linear Regression models? Explain any three.

7

How do you interpret the coefficients in a Multiple Linear Regression model?

8

What is Regularization in regression? Why is it needed?

9

Describe Ridge Regression (L2 Regularization). State its cost function.

10

Describe Lasso Regression (L1 Regularization). How does it assist in feature selection?

11

Compare and contrast Ridge and Lasso regression. When would you use one over the other?

12

Discuss the effect of the regularization parameter (Lambda) on model complexity and the Bias-Variance tradeoff.

13

What is Polynomial Regression? How does it utilize linear regression techniques to fit non-linear data?

14

Explain the concept of Tree-Based Regression. How is the predicted value for a leaf node calculated?

15

What splitting criteria are used in Regression Trees to determine the best split?

16

Discuss Time-series Regression. How does it differ from standard regression regarding the assumption of independence?

17

Explain the concept of Autoregressive (AR) models in Time-series regression.

18

Define and explain the following Evaluation Metrics for Regression: R-squared () and RMSE.

19

Explain the Gradient Descent algorithm as applied to Linear Regression optimization.

20

What is Elastic Net Regression? Why is it considered a hybrid of Ridge and Lasso?