wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Ml based

Total questions: 10

Worksheet time: 11mins

Name
Class
Date
1.

Which of the following is an example of Supervised Learning?

a)

Detecting spam emails based on past labeled data

b)

Grouping customers based on their shopping behavior

c)

A robot learning to walk through trial and error

d)

Identifying hidden patterns in unstructured data

2.

What does Overfitting mean in Machine Learning?

a)

The model performs well on new data but poorly on training data

b)

The model memorizes training data but fails to generalize to new data

c)

The model has too little data to train on

d)

The model is too simple and performs poorly on all data

3.

What is the key difference between Traditional Programming and Machine

Learning?

a)

Traditional programming learns from data, while ML follows fixed rules

b)

Machine Learning is faster in all cases than traditional programming

c)

Machine Learning learns from data and improves over time, while Traditional

Programming follows predefined rules

d)

Traditional programming always requires a neural network

4.

Which of the following is an example of Reinforcement Learning?

a)

A self-driving car learning to navigate by getting rewards for good actions

b)

A spam filter that classifies emails as spam or not spam

c)

Grouping customers based on their purchase behavior

d)

Identifying whether a person has cancer based on medical records

5.

What is the main advantage of Machine Learning?

a)

It eliminates all human decision-making

b)

It can identify patterns and make predictions from large datasets

c)

It is always 100% accurate

d)

It requires no data to function

6.

Which is not an advantage of Data Preprocessing?

a)

Improving the data quality

b)

Enhancing model performance

c)

Reducing Computational Complexity

d)

Introducing bias into the dataset

7.

Which is the correct order of Data Preprocessing?

1. Data Formatting and Data Binning.

2. Importing the Dataset and getting Basic insights.

3. Dealing with Categorical Values.

4. Dealing with Null Values.

5. Feature Scaling.

6. Splitting of the Dataset. (For Training & Testing)

a)

2, 4, 1, 3, 6, 5

b)

1, 2, 3, 4, 5, 6

c)

2, 4, 1, 3, 5, 6

d)

2, 3, 4, 1, 6, 5

8.

How to show the first 5 rows in the dataset in dataframe named “df”?

a)

df.head()

b)

df.head(5)

c)

df.tail()

d)

both a & b

9.

Which of the following ways is not a method of dealing with null values?

a)

drop the data (either row or column)

b)

replace the data with mean

c)

replace the data with a random value

d)

replace the data with most frequent value

10.

What is the main purpose of feature engineering in data preprocessing?

a)

To remove all missing values without considering their impact

b)

To create relevant features that improve model performance

c)

To randomly add new features without domain knowledge

d)

To introduce noise into the dataset