wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Exploring Machine Learning Concepts

Total questions: 15

Worksheet time: 15mins

Name
Class
Date
1.

Which of the following is a supervised learning algorithm?

a)

Support Vector Machine

b)

Principal Component Analysis

c)

Linear Regression

d)

K-Means Clustering

2.

What is the primary goal of unsupervised learning?

a)

To enhance the accuracy of labeled datasets.

b)

To identify patterns or structures in data without labeled responses.

c)

To classify data into predefined categories.

d)

To predict future outcomes based on past data.

3.

How do you evaluate the performance of a classification model?

a)

Use only the training accuracy to evaluate performance.

b)

Focus solely on the model's runtime efficiency.

c)

Use metrics like accuracy, precision, recall, F1 score, and confusion matrix.

d)

Ignore the confusion matrix and only consider ROC curves.

4.

What is the difference between classification and regression tasks?

a)

Classification requires more data than regression tasks.

b)

Classification predicts numerical values; regression predicts categories.

c)

Classification predicts categories; regression predicts continuous values.

d)

Classification is used for time series; regression is for image analysis.

5.

Which method is commonly used for statistical learning?

a)

Data mining

b)

Machine learning

c)

Qualitative analysis

d)

Regression analysis

6.

What is a decision tree used for in machine learning?

a)

A decision tree is primarily for data storage.

b)

A decision tree is used for image processing tasks.

c)

A decision tree is used for natural language generation.

d)

A decision tree is used for classification and regression tasks in machine learning.

7.

How does the k-nearest neighbors (KNN) algorithm work?

a)

KNN classifies a data point based on the majority label of its k nearest neighbors.

b)

KNN requires a predefined model to classify data points.

c)

KNN uses a decision tree to classify data points.

d)

KNN predicts a data point based on a weighted average of all data points.

8.

What is the main purpose of linear regression?

a)

To visualize data in a scatter plot.

b)

To predict the value of a dependent variable based on the values of independent variables.

c)

To determine the correlation between two variables.

d)

To calculate the mean of a dataset.

9.

How does logistic regression differ from linear regression?

a)

Linear regression can only handle binary outcomes.

b)

Logistic regression is used for time series forecasting.

c)

Logistic regression predicts probabilities for categorical outcomes, while linear regression predicts continuous values.

d)

Logistic regression requires normally distributed data.

10.

What are bagging and boosting in the context of ensemble methods?

a)

Bagging reduces variance by averaging multiple models, while boosting reduces bias by focusing on errors of previous models.

b)

Bagging and boosting are both techniques that only focus on the best-performing model.

c)

Bagging increases bias by averaging multiple models, while boosting increases variance by combining all models equally.

d)

Bagging uses a single model to make predictions, while boosting uses multiple models without any focus on errors.

11.

Which algorithm would you use for predicting a continuous outcome?

a)

Classification algorithms

b)

Clustering algorithms

c)

Decision trees

d)

Regression algorithms

12.

What type of data is typically used in unsupervised learning?

a)

Structured data

b)

Labeled data

c)

Unlabeled data

d)

Supervised data

13.

How can you assess the accuracy of a decision tree model?

a)

Use cross-validation and performance metrics like accuracy, precision, recall, and F1 score.

b)

Use only the training data for evaluation.

c)

Assess the model based on visual inspection of the tree structure.

d)

Ignore performance metrics and rely on expert opinion.

14.

What is the significance of the training and testing datasets?

a)

Training datasets are used for data storage only.

b)

Testing datasets are used to create new models.

c)

Both datasets are identical in purpose and function.

d)

Training datasets help in model learning, while testing datasets assess model performance.

15.

In KNN, what is the minimum value of K?

a)

1

b)

2

c)

3.

d)

4