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 target variable is continuous.
B. The input variables are continuous.
C. The training data is unlabeled.
D. The target variable is categorical or discrete.

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

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

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

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

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

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

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

A. The model predicted Negative, and the actual class was Negative.
B. The model predicted Positive, and the actual class was Positive.
C. The model predicted Negative, and the actual class was Positive.
D. The model predicted Positive, but 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. Precision
B. Specificity
C. Recall
D. Accuracy

7 Calculate the Precision given: , , .

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

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

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

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

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

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 has zero errors.
C. It predicts the negative class always.
D. It is a perfect classifier.

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. It cannot be calculated for multiclass problems.
B. Linearly separable data.
C. Imbalanced datasets.
D. High computational cost.

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

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

14 The Perceptron algorithm is guaranteed to converge only if:

A. The learning rate is greater than 1.
B. The weights are initialized to zero.
C. The data is linearly separable.
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. Sigmoid (Logistic)
B. Step
C. Logarithm
D. Softmax

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

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

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

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

18 Which loss function is minimized in Logistic Regression?

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

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 finding the best splitting feature.
D. By projecting the point onto a hyperplane.

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

A. It ignores outliers.
B. It trains very slowly.
C. It uses a simple distance metric.
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. High Bias, Low Variance (Underfitting)
B. The decision boundary becomes smooth.
C. The model becomes a linear classifier.
D. Low Bias, High Variance (Overfitting)

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

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

23 Which distance metric is calculated as ?

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

31 What are Support Vectors in SVM?

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

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

A. Bagging
B. Gradient Descent
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. The model fits the training data very closely (potential overfitting).
B. Each training example has a wide-reaching influence.
C. The decision boundary will be nearly linear.
D. The margin becomes wider.

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

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

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

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

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

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

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

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

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

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

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

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

40 Which of the following classifiers is a Generative Model?

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

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

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

42 Which metric is calculated using the formula: ?

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

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

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

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

A. True Positive Rate
B. Precision
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 model underfits (high bias).
B. The coefficients become large.
C. The boundary becomes non-linear.
D. The model overfits.

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

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

48 In SVM, which kernel is defined as ?

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

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

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