wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Kuis 1: Machine Learning for IoT- 4 TRK

Total questions: 15

Worksheet time: 8mins

Name
Class
Date
1.

What is Machine Learning? (Choose 3 Answers)

a)

Artificial Intelligence

b)

Machine Learning

c)

Data Statistics

d)

Deep Learning

2.

Which of the following is not type of learning?

a)

Semi-unsupervised Learning

b)

Unsupervised Learning

c)

Supervised Learning

d)

Reinforcement Learning

3.

Machine Learning has various function representation, which of the following is not function of symbolic?

a)

Decision Trees

b)

Rules in propotional Logic

c)

Hidden-Markov Models (HMM)

d)

Rules in first-order predicate logic

4.

Machine Learning has various function representation, which of the following is not numerical functions?

a)

Linear Regression

b)

Support Vector Machines

c)

Neural Network

d)

Case-based

5.

Decision trees are an algorithm for which machine learning task?

a)

Clustering

b)

Classification

c)

Classification and Regression

d)

Dimensionality reduction

e)

Regression

6.

Which of the following is true:

a)

Deeper trees will always improve performance on the training data

b)

Deeper trees will always improve performance when testing the model on unseen data

c)

If a deeper tree improves performance on the training data, then it will also improve performance on new unseen data

7.

Which system requires more entropy to be described?

a)

Tossing a fair coin

b)

Tossing a biased coin

8.

What is a Decision Tree?

a)

Flow-Chart

b)

Structure in which internal node represents test on an attribute, each branch represents outcome of test and each leaf node represents class label

c)

Flow-Chart & Structure in which internal node represents test on a feature, each branch represents outcome of test and each leaf node represents class label

d)

None of the mentioned

9.

Decision Trees can be used for regression Tasks

a)

True

b)

False

10.

Usage of Random Forest

a)

Running efficiently on large data bases.

b)

Insert the vector down on each of the trees in the forest.

c)

grows many classification trees

d)

chooses the classification having the most votes over all the trees

11.

KNeighborsClassifier class can be imported as:

a)

from sklearn.ensemble import KNeighborsClassifier

b)

from sklearn.neighbors import KNeighborsClassifier

c)

from sklearn.tree import KNeighborsClassifier

d)

from sklearn import KNeighborsClassifier

12.

Which of the following is TRUE about Reinforcement Learning?

a)

It uses rewards and penalty methods to train a model

b)

It is also known as a semi - supervised learning model

c)

Chess playing computer is a good example of reinforcement learning

d)

All of the above

13.

Which of the following is FALSE about Tuples in Python?

a)

Tuples are immutable

b)

Tuple items can be deleted using del keyword

c)

Tuples can be declared as: x,y=1,2

d)

None of the above

14.

Which of the following is TRUE about Random Forest?

a)

Random Forest aims to decrease both variance and bias

b)

Random Forest aims to decrease variance not bias

c)

Random Forest aims to decrease bias not variance

d)

None of the above

15.

'Convert to CSV' module is a part of which section?

a)

Data Input and Output

b)

Data Transformation

c)

Model Training

d)

None of the above