Unit 2 - Practice Quiz

INT395 49 Questions
0 Correct 0 Wrong 49 Left
0/49

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

A. The training data is unlabeled.
B. The target variable is categorical or discrete.
C. The input variables are continuous.
D. The target variable is continuous.

2 Which scikit-learn method is primarily used to train a classifier on a dataset ?

A. model.transform(X, y)
B. model.predict(X, y)
C. model.score(X, y)
D. model.fit(X, y)

3 What is the standard shape of the input matrix expected by scikit-learn classifiers?

A. (n_features, n_classes)
B. (n_features, n_samples)
C. (n_samples, n_features)
D. (n_samples, n_samples)

4 Which of the following metrics is defined as the ratio of correctly predicted observations to the total observations?

A. Accuracy
B. F1-Score
C. Precision
D. Recall

5 In a Confusion Matrix, what does a False Positive (FP) represent?

A. The model predicted Positive, but the actual class was Negative.
B. The model predicted Negative, and the actual class was Positive.
C. The model predicted Positive, and the actual class was Positive.
D. The model predicted Negative, and the actual class was Negative.

6 Which metric is best suited for a classification problem where False Negatives are much more costly than False Positives (e.g., detecting a deadly disease)?

A. Specificity
B. Accuracy
C. Recall
D. Precision

7 Calculate the Precision given: , , .

A. 0.91
B. 0.83
C. 0.50
D. 0.20

8 The F1-Score is the harmonic mean of which two metrics?

A. TPR and FPR
B. Specificity and Sensitivity
C. Precision and Recall
D. Accuracy and Recall

9 In an ROC curve, the x-axis and y-axis represent which metrics respectively?

A. Recall vs Accuracy
B. True Negative Rate vs True Positive Rate
C. False Positive Rate vs True Positive Rate
D. Precision vs Recall

10 What does an AUC (Area Under Curve) score of 0.5 imply about a classifier?

A. It performs no better than random guessing.
B. It is a perfect classifier.
C. It predicts the negative class always.
D. It has zero errors.

11 When using classification_report in scikit-learn, what does the macro avg represent?

A. The unweighted mean of the metric for each label.
B. The accuracy of the model.
C. The weighted average based on support size.
D. The standard deviation of the metric.

12 Which issue makes Accuracy a misleading metric?

A. Linearly separable data.
B. High computational cost.
C. It cannot be calculated for multiclass problems.
D. Imbalanced datasets.

13 What is the activation function used in the standard Perceptron algorithm for binary classification?

A. Heaviside step function
B. Tanh function
C. Sigmoid function
D. ReLU function

14 The Perceptron algorithm is guaranteed to converge only if:

A. The weights are initialized to zero.
B. The data is linearly separable.
C. The learning rate is greater than 1.
D. The data is normally distributed.

15 Which function maps the output of a linear equation to a probability value in in Logistic Regression?

A. Softmax
B. Logarithm
C. Step
D. Sigmoid (Logistic)

16 The decision boundary generated by a standard Logistic Regression model is:

A. Polynomial
B. Circular
C. Linear
D. Irregular

17 In scikit-learn's LogisticRegression, what is the purpose of the parameter C?

A. It controls the learning rate.
B. It is the inverse of regularization strength.
C. It sets the number of iterations.
D. It determines the kernel type.

18 Which loss function is minimized in Logistic Regression?

A. Log Loss (Cross-Entropy)
B. Mean Squared Error
C. Gini Impurity
D. Hinge Loss

19 How does k-Nearest Neighbors (k-NN) classify a new data point?

A. By taking a majority vote of the closest training examples.
B. By calculating the probability using Bayes' theorem.
C. By projecting the point onto a hyperplane.
D. By finding the best splitting feature.

20 Why is k-NN often referred to as a lazy learner?

A. It uses a simple distance metric.
B. It trains very slowly.
C. It ignores outliers.
D. It only generalizes the data during the prediction phase.

21 In k-NN, what is the effect of choosing a very small value for (e.g., )?

A. Low Bias, High Variance (Overfitting)
B. High Bias, Low Variance (Underfitting)
C. The model becomes a linear classifier.
D. The decision boundary becomes smooth.

22 Which preprocessing step is critical for k-NN performance?

A. Feature Scaling
B. Removing correlations
C. Increasing the number of features
D. One-hot encoding target labels

23 Which distance metric is calculated as ?

A. Euclidean Distance
B. Manhattan Distance
C. Minkowski Distance
D. Cosine Similarity

24 In a Decision Tree, what does a leaf node represent?

A. A feature to split on.
B. A class label or probability.
C. The root of the tree.
D. A decision rule.

25 Which metric does the CART algorithm (used by scikit-learn for Decision Trees) use by default to measure impurity?

A. Log Loss
B. Mean Squared Error
C. Gini Impurity
D. Entropy

26 Calculate the Gini Impurity of a node containing 3 positive samples and 3 negative samples.

A. 0.5
B. 0.0
C. 1.0
D. 0.25

27 Which hyperparameter in DecisionTreeClassifier can be used to control overfitting?

A. C
B. learning_rate
C. kernel
D. max_depth

28 What is the concept of Information Gain in Decision Trees?

A. The increase in accuracy after a split.
B. The total number of nodes in the tree.
C. The time taken to train the tree.
D. The reduction in entropy (or impurity) achieved by a split.

29 Decision Trees split the feature space into regions using boundaries that are:

A. Circular
B. Orthogonal to the feature axes
C. Diagonal
D. Curved

30 The primary objective of a Support Vector Machine (SVM) is to find a hyperplane that:

A. Maximizes the margin between classes.
B. Minimizes the number of support vectors.
C. Separates data with zero error regardless of margin.
D. Passes through the mean of the data.

31 What are Support Vectors in SVM?

A. The data points furthest from the decision boundary.
B. The centroids of the classes.
C. The data points closest to the decision boundary.
D. The misclassified data points.

32 Which technique allows SVM to perform non-linear classification?

A. Gradient Descent
B. Bagging
C. Pruning
D. The Kernel Trick

33 In SVC (Support Vector Classifier), what does a high value of Gamma () imply for an RBF kernel?

A. Each training example has a wide-reaching influence.
B. The decision boundary will be nearly linear.
C. The model fits the training data very closely (potential overfitting).
D. The margin becomes wider.

34 Which scikit-learn class is used for Support Vector Classification?

A. sklearn.linear_model.SGDClassifier
B. sklearn.tree.DecisionTreeClassifier
C. sklearn.svm.SVC
D. sklearn.svm.SVR

35 The Naïve Bayes classifier is based on which statistical theorem?

A. Gauss-Markov Theorem
B. Bayes' Theorem
C. Central Limit Theorem
D. Pythagorean Theorem

36 What is the "Naïve" assumption in Naïve Bayes?

A. All features are equally important.
B. The classes are balanced.
C. The data follows a normal distribution.
D. All features are mutually independent given the class.

37 Which variant of Naïve Bayes is best suited for continuous data assuming a bell-curve distribution?

A. MultinomialNB
B. GaussianNB
C. BernoulliNB
D. ComplementNB

38 In Text Classification with word counts, which Naïve Bayes variant is typically used?

A. GaussianNB
B. MultinomialNB
C. LinearNB
D. LogisticNB

39 What is Laplace Smoothing used for in Naïve Bayes?

A. To reduce the number of features.
B. To handle continuous variables.
C. To normalize the dataset.
D. To prevent zero probabilities for unseen features.

40 Which of the following classifiers is a Generative Model?

A. Support Vector Machine
B. Decision Tree
C. Logistic Regression
D. Naïve Bayes

41 To handle a multi-class classification problem with a binary classifier like Logistic Regression, which strategy is commonly used?

A. Pruning
B. Gradient Boosting
C. Kernel Trick
D. One-vs-Rest (OvR)

42 Which metric is calculated using the formula: ?

A. F1-Score
B. Accuracy
C. Matthews Correlation Coefficient
D. Specificity

43 If a Decision Tree is fully grown until all leaves are pure, it is likely to have:

A. Low Variance
B. High Bias
C. Low Accuracy on training data
D. High Variance (Overfitting)

44 In the context of the Confusion Matrix, Specificity is also known as:

A. Precision
B. True Positive Rate
C. True Negative Rate
D. False Positive Rate

45 Which scikit-learn utility is best used to split data into training and testing sets?

A. cross_val_score
B. train_test_split
C. GridSearchCV
D. StandardScaler

46 What happens to the decision boundary of a Logistic Regression model if the regularization parameter is very small?

A. The coefficients become large.
B. The model overfits.
C. The boundary becomes non-linear.
D. The model underfits (high bias).

47 Which of the following algorithms does NOT produce a linear decision boundary (without kernels)?

A. Linear SVM
B. k-Nearest Neighbors
C. Linear Perceptron
D. Logistic Regression

48 In SVM, which kernel is defined as ?

A. RBF Kernel
B. Sigmoid Kernel
C. Polynomial Kernel
D. Linear Kernel

49 What is the primary advantage of Naïve Bayes classifiers regarding training time?

A. They are fast because they require a single pass over the data.
B. They depend on the number of support vectors.
C. They are slow because they calculate distances between all points.
D. They are very slow due to iterative optimization.