14 Sep 100 Machine Learning MCQ (Multiple Choice Questions) with Answers
Show Answer
Explanation
2) Which of the following is a type of Supervised Learning?
Show Answer
Explanation
3) What type of target variable does a Classification problem have?
Show Answer
Explanation
4) What type of target variable does a Regression problem have?
Show Answer
Explanation
5) Which algorithm is commonly used for unsupervised clustering?
Show Answer
Explanation
6) What is the primary cause of overfitting in a machine learning model?
Show Answer
Explanation
7) How can you identify underfitting in a model?
Show Answer
Explanation
8) Which technique helps prevent overfitting by adding a penalty term to the loss function?
Show Answer
Explanation
9) What is L1 Regularization also known as?
Show Answer
Explanation
10) What is L2 Regularization also known as?
Show Answer
Explanation
11) Which metric is used to evaluate a classification model when classes are highly imbalanced?
Show Answer
Explanation
12) In a Confusion Matrix, what does a “False Positive” mean?
Show Answer
Explanation
13) What is Precision?
Show Answer
Explanation
14) What is Recall (Sensitivity)?
Show Answer
Explanation
15) What is the F1-Score?
Show Answer
Explanation
16) Which algorithm uses a hyper-plane to separate data points into classes?
Show Answer
Explanation
17) What is the main assumption of the Naïve Bayes classifier?
Show Answer
Explanation
18) Which metric measures impurity in a Decision Tree?
Show Answer
Explanation
19) Ensemble method that builds multiple decision trees in parallel using bootstrap samples is called:
Show Answer
Explanation
20) What is the main difference between Bagging and Boosting?
Show Answer
Explanation
21) Gradient Boosting belongs to which family of algorithms?
Show Answer
22) What is Principal Component Analysis (PCA) used for?
Show Answer
Explanation
23) In K-Means clustering, what does ‘K’ represent?
Show Answer
Explanation
24) In KNN (K-Nearest Neighbors), what does ‘K’ represent?
Show Answer
Explanation
25) Which distance metric is most commonly used in default KNN?
Show Answer
Explanation
26) What is the Curse of Dimensionality?
Show Answer
Explanation
27) What is the purpose of cross-validation (e.g., K-Fold)?
Show Answer
Explanation
28) In K-Fold Cross Validation with K=5, how many times is the model trained?
Show Answer
Explanation
29) What is One-Hot Encoding used for?
Show Answer
Explanation
30) Which activation function scales outputs between 0 and 1, often used in binary classification output layers?
Show Answer
Explanation
31) What is the output range of the Tanh activation function?
Show Answer
Explanation
32) What issue does the Rectified Linear Unit (ReLU) activation function suffer from?
Show Answer
Explanation
33) What optimization algorithm updates parameters by calculating gradients on small random subsets of data?
Show Answer
Explanation
34) What is the learning rate in Gradient Descent?
Show Answer
Explanation
35) What happens if the learning rate is too high in Gradient Descent?
Show Answer
Explanation
36) What happens if the learning rate is too low in Gradient Descent?
Show Answer
Explanation
37) Which evaluation metric is appropriate for Linear Regression?
Show Answer
Explanation
38) What does R-squared (R²) represent in regression analysis?
Show Answer
Explanation
39) What is Logistic Regression primarily used for?
Show Answer
Explanation
40) What function converts linear model output to probability in Logistic Regression?
Show Answer
Explanation
41) Which algorithm is non-parametric and instance-based?
Show Answer
Explanation
42) What is a hyperparameter?
Show Answer
Explanation
43) Which technique automates searching across a pre-defined grid of hyperparameters?
Show Answer
Explanation
44) What is the purpose of Data Normalization / Standard Scaling?
Show Answer
Explanation
45) Min-Max Scaling transforms data to which range by default?
Show Answer
Explanation
46) Standardization (Z-score scaling) transforms data to have:
Show Answer
Explanation
47) What is Data Imputation?
Show Answer
Explanation
48) What is the bias-variance tradeoff?
Show Answer
Explanation
49) High bias usually leads to:
Show Answer
Explanation
50) High variance usually leads to:
Show Answer
Explanation
51) Which loss function is commonly used in binary classification?
Show Answer
Explanation
52) What is the Softmax activation function used for?
Show Answer
Explanation
53) In Decision Trees, what is “pruning”?
Show Answer
Explanation
54) What is Bootstrap Aggregating commonly known as?
Show Answer
Explanation
55) Which of the following is a Gradient Boosting implementation?
Show Answer
Explanation
56) What type of machine learning involves an agent interacting with an environment to maximize rewards?
Show Answer
Explanation
57) What is Q-Learning?
Show Answer
Explanation
58) What is an Outlier?
Show Answer
Explanation
59) Which visual plot is effective for detecting univariate outliers?
Show Answer
Explanation
60) What is the ROC curve?
Show Answer
Explanation
61) What does an AUC (Area Under Curve) of 1.0 indicate?
Show Answer
Explanation
62) An AUC value of 0.5 indicates:
Show Answer
Explanation
63) What is the main purpose of dimensionality reduction?
Show Answer
Explanation
64) Which algorithm is an unsupervised density-based clustering method?
Show Answer
Explanation
65) What advantage does DBSCAN have over K-Means?
Show Answer
Explanation
66) What is a dendrogram used for?
Show Answer
Explanation
67) In Naïve Bayes, what handles zero probability issues during prediction?
Show Answer
Explanation
68) What is Feature Engineering?
Show Answer
Explanation
69) What is Multicollinearity?
Show Answer
Explanation
70) Which metric detects multicollinearity in regression models?
Show Answer
Explanation
71) What does a VIF value greater than 5 or 10 indicate?
Show Answer
Explanation
72) What technique generates synthetic minority class samples to solve class imbalance?
Show Answer
Explanation
73) What is Stratified K-Fold cross validation?
Show Answer
Explanation
74) What is Early Stopping in iterative models (like neural networks or boosting)?
Show Answer
Explanation
75) What is the function of Dropout in neural networks?
Show Answer
Explanation
76) Which algorithm relies on Bayes’ Theorem?
Show Answer
Explanation
77) What is the primary metric to evaluate a K-Means clustering quality?
Show Answer
Explanation
78) What range does the Silhouette Score span?
Show Answer
Explanation
79) A Silhouette Score close to +1 indicates:
Show Answer
Explanation
80) What is a popular heuristic method to select the optimal number of clusters K in K-Means?
Show Answer
Explanation
81) Which regularizer forces model coefficients strictly to zero, effectively performing feature selection?
Show Answer
Explanation
82) What is the cost function for Linear Regression?
Show Answer
Explanation
83) What is Hinge Loss commonly used for?
Show Answer
Explanation
84) In Support Vector Machines, what are Support Vectors?
Show Answer
Explanation
85) What is the “Kernel Trick” in SVMs?
Show Answer
Explanation
86) Which kernel is widely used in SVM for non-linear data?
Show Answer
Explanation
87) What is Data Drift / Covariate Shift?
Show Answer
Explanation
88) Transfer Learning refers to:
Show Answer
Explanation
89) What is semi-supervised learning?
Show Answer
Explanation
90) Which gradient descent variant processes the entire dataset in a single step per weight update?
Show Answer
Explanation
91) What is an epoch in machine learning training?
Show Answer
Explanation
92) What is the target variable in Unsupervised Learning?
Show Answer
Explanation
93) Which technique converts ordinal categorical values into numerical ranks (e.g., Low=1, Medium=2, High=3)?
Show Answer
Explanation
94) What is target leakage (data leakage)?
Show Answer
Explanation
95) Which technique is used to find association rules between items in transactional data?
Show Answer
Explanation
96) Support, Confidence, and Lift are metrics evaluated in:
Show Answer
Explanation
97) In time series analysis, what is “Stationarity”?
Show Answer
Explanation
98) What model family combines AutoRegression and Moving Average for time series?
Show Answer
Explanation
99) What does the “Gradient” in Gradient Descent represent?
Show Answer
Explanation
100) Why is data split into Training and Testing sets?
No Comments