wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

AI502_ML_TA_1_AIDS

Total questions: 30

Worksheet time: 20mins

Name
Class
Date
1.

Which of the following is NOT a goal of Machine Learning?

a)

Automate decision-making processes

b)

Learn from data

c)

Write rules manually

d)

Improve performance with experience

2.

Why is Machine Learning gaining popularity?

a)

Data is decreasing rapidly

b)

It avoids use of mathematics

c)

High computation power and availability of big data

d)

It replaces all software engineers

3.

Which is a major reason for using ML over traditional programming?

a)

Less accuracy

b)

Data-driven learning

c)

Manual rule creation

d)

Predefined outputs

4.

In Machine Learning, what is a ‘model’?

a)

A physical machine

b)

An algorithm trained on data to make predictions

c)

A mathematical puzzle

d)

·         A design template

5.

The process of training a model involves:

a)

Running code without data

b)

Feeding data to the model and optimizing its performance

c)

Drawing charts manually

d)

Building a database

6.

Which is an example of supervised learning?

a)

Clustering customers

b)

Stock price prediction using historical data

c)

Recommending movies without labeled data

d)

Self-driving car learning through exploration

7.

Write an formula to obtained accuracy in binary classification problem of ML

8.

Which of the following is an example of reinforcement learning?

a)

Image classification

b)

Grouping similar documents

c)

A robot learning to walk by trial and error

d)

Predicting exam scores

9.

Which of the following can be considered as a quality issue in data?

a)

Complete data

b)

Redundant features

c)

Clean data

d)

Standardized formats

10.

What is the main goal of data preprocessing?

a)

Increase model complexity

b)

Prepare raw data for modeling

c)

Reduce training time only

d)

Add random noise to data

11.

Which of the following is a feature scaling technique that brings all values between 0 and 1?

a)

Standardization

b)

Label Encoding

c)

Min-Max Normalization

d)

Ordinal Encoding

12.

(a)   encoding assigns unique numbers to each category without considering any order.

13.

The formula for Z-score standardization is (x - mean) / __________.

a)

Standard Deviation

b)

Mode

c)

Median

d)

Z/x

14.

(a)   feature selection methods evaluate features based on statistical tests before modeling.

15.

Which of the following is NOT a type of Missing Data Technique

a)

Deletion

b)

Missing Completely at Random (MCAR)

c)

Mean Imputation

d)

Missing at Random (MAR)

e)

Missing Not at Random (MNAR)

16.

You are given a dataset with missing values in the "Age" column. Which method would you use if the data is normally distributed?

a)

Mode imputation

b)

Mean imputation

c)

Median imputation

d)

Remove the column

17.

What is the main drawback of One-Hot Encoding?

a)

Loss of information

b)

Cannot handle numerical data

c)

It introduces high dimensionality

d)

It requires missing data

18.

Z-score normalization assumes that data is:

a)

Uniformly distributed

b)

Normally distributed

c)

Positively skewed

d)

Random

19.

In K‑NN classification, as K increases, what happens to bias and variance?

a)

Bias increases, variance decreases

b)

Bias decreases, variance increases

c)

Both increase

d)

Both decrease

20.

A decision tree reaches 100% training accuracy. Which of the following models trained on the same data will also achieve 100% accuracy?

a)

KNN

b)

SVM Polynomial-kernel

c)

Naive Bayes

d)

None of the above

21.

Which of the following best describes bagging?

a)

Sequential boosting of weak learners

b)

Averaging predictions over multiple bootstrap samples

c)

Stacking heterogeneous base models

d)

Feature selection technique

22.

Which metric is not derived from the confusion matrix in classification?

a)

Precision

b)

Recall

c)

ROC-AUC

d)

Error Rate

23.

High bias, low variance is a scenario corresponds to (a)   in terms of bias and variance

24.

Which attribute will a decision tree select first when building the tree using the ID3 algorithm?

a)

The one with the lowest entropy

b)

The one with the highest information gain

c)

The one that occurs most frequently

d)

The one with the lowest mean value

25.

Which of the following best describes entropy in information theory?

a)

It measures the distance between clusters

b)

It is the measure of randomness or impurity in the dataset

c)

It is used to calculate the mean of data

d)

It is used to evaluate the accuracy of models

26.

What is the main objective of a Support Vector Machine (SVM)?

a)

To minimize the number of support vectors

b)

To find the hyperplane that maximizes the margin between classes

c)

To maximize the error in classification

d)

To reduce the number of features

27.

In the context of SVM, what are support vectors?

a)

Vectors that support the training process

b)

Data points that are farthest from the hyperplane

c)

Data points that lie closest to the hyperplane and influence its position

d)

Data points that are always misclassified

28.

Which of the following kernels is not commonly used in SVM?

a)

Linear kernel

b)

Polynomial kernel

c)

Radial Basis Function (RBF) kernel

d)

Exponential Moving Average kernel

29.

In K-Fold Cross Validation, if k = 5, how many models are trained?

a)

1

b)

2

c)

5

d)

10

30.

In Decision Trees, which strategy helps reduce overfitting?

a)

Expanding the tree until all leaves are pure

b)

Using all available features

c)

Pruning the tree

d)

Increasing the depth of the tree