Unit 4 - Practice Quiz

INT395 50 Questions
0 Correct 0 Wrong 50 Left
0/50

1 In the context of supervised learning, what distinguishes a regression problem from a classification problem?

A. Regression requires unsupervised data.
B. The input features must be categorical.
C. The target variable is continuous.
D. The target variable is categorical.

2 Which visualization tool is most commonly used in Exploratory Data Analysis (EDA) to visualize the linear relationship between a single feature and the target variable?

A. Histogram
B. Pie chart
C. Scatter plot
D. Box plot

3 When analyzing the relationship between multiple variables in a dataset, which matrix helps quantify the linear correlation between every pair of features?

A. Covariance matrix
B. Confusion matrix
C. Hessian matrix
D. Correlation matrix

4 In a simple linear regression model , what does represent?

A. The learning rate
B. The slope of the line
C. The y-intercept
D. The residual error

5 Which Scikit-Learn class is used to perform Ordinary Least Squares (OLS) linear regression?

A. sklearn.linear_model.SGDRegressor
B. sklearn.linear_model.LinearRegression
C. sklearn.linear_model.Ridge
D. sklearn.linear_model.Lasso

6 What is the objective function that Ordinary Least Squares (OLS) minimizes?

A. Hinge Loss
B. Cross-Entropy Loss
C. Sum of Squared Errors (SSE)
D. Mean Absolute Error (MAE)

7 What is the primary motivation for using the RANSAC (RANdom SAmple Consensus) algorithm in regression?

A. To perform feature selection.
B. To increase the speed of training.
C. To handle missing values automatically.
D. To fit a model in the presence of a significant number of outliers.

8 In the RANSAC algorithm, what does the 'residual_threshold' parameter define?

A. The maximum number of iterations.
B. The maximum residual for a data sample to be classified as an inlier.
C. The minimum number of samples required to fit the model.
D. The learning rate of the estimator.

9 Which metric is calculated as ?

A. Explained Variance Score
B. Mean Absolute Error
C. Coefficient of Determination
D. Mean Squared Error

10 If an score is 1.0, what does this indicate about the regression model?

A. The model perfectly fits the data.
B. The model is a constant line.
C. The model is underfitting.
D. The model explains none of the variability of the response data.

11 Why is Mean Squared Error (MSE) often preferred over Mean Absolute Error (MAE) for optimization?

A. MSE is differentiable everywhere, making gradient-based optimization easier.
B. MSE has the same unit as the target variable.
C. MSE is robust to outliers.
D. MSE is always smaller than MAE.

12 To perform Polynomial Regression using a linear model in Scikit-Learn, which transformer must be applied first?

A. StandardScaler
B. PolynomialFeatures
C. SimpleImputer
D. OneHotEncoder

13 What is the main risk associated with using a high-degree polynomial in regression?

A. Convergence failure
B. High bias
C. Underfitting
D. Overfitting

14 Which of the following techniques helps reduce overfitting in regression models by adding a penalty term to the loss function?

A. Normalization
B. Regularization
C. Augmentation
D. Standardization

15 Ridge regression minimizes the sum of squared residuals plus a penalty term based on:

A. The sum of squared values of coefficients ( norm).
B. The sum of absolute values of coefficients ( norm).
C. The number of non-zero coefficients.
D. The maximum coefficient value.

16 Which property makes Lasso regression useful for feature selection?

A. It increases the magnitude of coefficients.
B. It works best when .
C. It forces some coefficients to become exactly zero.
D. It shrinks coefficients uniformly.

17 In Scikit-Learn, which regression model combines both and regularization penalties?

A. Ridge
B. Lasso
C. ElasticNet
D. BayesianRidge

18 In regularized regression, what is the role of the hyperparameter (or )?

A. It controls the strength of the regularization penalty.
B. It sets the intercept to zero.
C. It controls the learning rate.
D. It determines the degree of the polynomial.

19 Why is feature scaling (e.g., Standardization) important before applying Ridge or Lasso regression?

A. To ensure the target variable is normally distributed.
B. To convert categorical data to numeric.
C. Because the penalty term is sensitive to the scale of the coefficients.
D. To remove missing values.

20 Support Vector Regression (SVR) tries to fit as many data points as possible within a margin of width:

A.
B.
C. Zero
D. (epsilon)

21 In Support Vector Regression, what is the role of the kernel function?

A. To normalize the target variable.
B. To map the input data into a higher-dimensional feature space to handle non-linearity.
C. To calculate the error metric.
D. To select the best features.

22 Which parameter in SVR controls the trade-off between the smoothness of the decision function and the tolerance for training errors?

A. C
B. Kernel
C. Gamma
D. Degree

23 What is the primary criterion used by Decision Tree Regressors to split a node?

A. Log-Loss
B. Information Gain
C. MSE (Variance reduction)
D. Gini Impurity

24 One major advantage of Decision Tree Regression is:

A. It does not require feature scaling or normalization.
B. It always extrapolates well.
C. It creates smooth, continuous prediction curves.
D. It never overfits.

25 What is a characteristic behavior of a Decision Tree Regressor when predicting values outside the range of the training data?

A. It automatically creates a polynomial fit.
B. It extrapolates linearly.
C. It predicts the average of the closest training samples (constant prediction).
D. It returns a null value.

26 Random Forest Regression improves upon a single Decision Tree by utilizing which technique?

A. Gradient Boosting
B. Pruning
C. Bagging (Bootstrap Aggregating)
D. Kernel trick

27 In a Random Forest Regressor, how is the final prediction determined?

A. The prediction of the tree with the highest accuracy.
B. Majority vote of the trees.
C. Average of the predictions of all individual trees.
D. Weighted sum of the features.

28 Which parameter in RandomForestRegressor determines the number of trees in the forest?

A. min_samples_split
B. n_estimators
C. max_depth
D. bootstrap

29 Random Forests introduce randomness in two ways: bootstrap sampling and:

A. Selecting a random subset of features at each split.
B. Randomly shuffling the target labels.
C. Random initialization of weights.
D. Randomly pruning the trees.

30 What is the 'Out-of-Bag' (OOB) score in Random Forests?

A. A validation score calculated using the samples not included in the bootstrap sample for each tree.
B. The training error of the full ensemble.
C. The error rate of the worst tree.
D. The accuracy on the test set.

31 Which Scikit-Learn function splits a dataset into training and testing sets?

A. sklearn.preprocessing.train_test
B. sklearn.model_selection.cross_val_score
C. sklearn.metrics.split_data
D. sklearn.model_selection.train_test_split

32 In the equation for ElasticNet: , what does (or l1_ratio in scikit-learn) control?

A. The overall regularization strength.
B. The tolerance for stopping criteria.
C. The mix between Ridge and Lasso regularization.
D. The degree of the polynomial.

33 A residual plot shows the residuals on the y-axis and the predicted values on the x-axis. What pattern indicates a good regression model?

A. A linear trend.
B. A funnel shape (heteroscedasticity).
C. Points randomly scattered around the horizontal axis (zero).
D. A clear U-shape curve.

34 When using SGDRegressor from Scikit-Learn, which hyperparameter defines the update rule schedule (how the learning rate changes over time)?

A. learning_rate
B. penalty
C. loss
D. alpha

35 Which of the following is an intrinsic weakness of Linear Regression?

A. It cannot model non-linear relationships without feature engineering.
B. It is difficult to interpret.
C. It is computationally expensive.
D. It requires categorical features.

36 In the context of regression metrics, what does Median Absolute Error provide that Mean Absolute Error does not?

A. Percentage error calculation.
B. Squared penalization.
C. Differentiability.
D. Robustness to outliers.

37 What is Multicollinearity?

A. When the training data is too small.
B. When the target variable is categorical.
C. When independent features are highly correlated with each other.
D. When the model has too many polynomial features.

38 How does DecisionTreeRegressor handle missing values in Scikit-Learn (standard implementation)?

A. It handles them natively.
B. It ignores the rows with missing values.
C. It requires imputation (filling missing values) before training.
D. It treats them as a separate category.

39 Which plot is typically used to inspect if the residuals follow a normal distribution?

A. Scatter plot
B. Bar chart
C. Box plot
D. Q-Q (Quantile-Quantile) plot

40 In Polynomial Regression, if you increase the degree of the polynomial significantly, the model becomes:

A. More biased.
B. More complex with higher variance.
C. Less flexible.
D. Linear.

41 What is the result of applying fit_transform on the training data and then transform on the test data during scaling?

A. Correct application of preprocessing parameters learnt from training to test data.
B. Incorrect scaling.
C. Data leakage.
D. Overfitting.

42 Which Scikit-Learn attribute holds the estimated coefficients for a Linear Regression model after fitting?

A. model.params_
B. model.weights_
C. model.intercept_
D. model.coef_

43 What is the analytical solution to find the optimal weights for Linear Regression called?

A. Gradient Descent
B. The Normal Equation
C. Backpropagation
D. Coordinate Descent

44 When using Support Vector Regression with an RBF kernel, what happens if the parameter (gamma) is very large?

A. The influence of each training example is limited to a close radius, leading to overfitting.
B. The model becomes a flat line.
C. The influence of each training example reaches very far.
D. The model behaves like a linear regression.

45 Why might one use Adjusted instead of standard ?

A. To account for the number of predictors, penalizing the addition of useless features.
B. To handle categorical variables.
C. To calculate error in absolute terms.
D. To ensure the score is always positive.

46 In the context of Bias-Variance tradeoff, a simple linear model with few features typically has:

A. Low Bias and Low Variance
B. High Bias and High Variance
C. Low Bias and High Variance
D. High Bias and Low Variance

47 Which of the following creates a pipeline in Scikit-Learn that scales data then fits a regressor?

A. sklearn.compose.ColumnTransformer()
B. sklearn.linear_model.LinearRegression(normalize=True)
C. sklearn.pipeline.make_pipeline(StandardScaler(), LinearRegression())
D. sklearn.model_selection.cross_val_score(LinearRegression())

48 What is the interpretation of the slope coefficient in the model ?

A. The correlation between and .
B. The value of when .
C. The change in for a one-unit increase in .
D. The percentage change in .

49 Which regression algorithm constructs a model based on the principle of 'recursive binary splitting'?

A. Decision Tree Regression
B. Ridge Regression
C. Support Vector Regression
D. Linear Regression

50 When interpreting a heatmap of a correlation matrix, a value of -0.9 between two features indicates:

A. A weak negative linear relationship.
B. A strong negative linear relationship.
C. No linear relationship.
D. A strong positive linear relationship.