wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Udacity ML ND Quiz

Total questions: 21

Worksheet time: 10mins

Name
Class
Date
1.

Select the True Statements

a)

Machine learning takes input data and static rules to predict the output value

b)

Traditional programming analyzes input data and comes up with rules and output data

c)

Machine learning uses knowledge about input data and expected output to learn the rules for modelling data relationships

d)

Traditional programming uses static rules to process input data to produce output

2.

Machine learning is a subset of artificial intelligence

a)

True

b)

False

3.

In tabular data, what does a row and column represent?

a)

Row = feature, column = entry

b)

Column = feature, row = entry

4.

Which of the following yields discrete categorical outputs?

a)

Logisitc Regression

b)

Classification

c)

Linear Regression

d)

Feature Learning

5.

High Bias Means

a)

Underfitting

b)

Overfitting

6.

This picture shows a result of ...

a)

Supervised Learning: Classification

b)

Unsupervised Learning: PCA

c)

Unsupervised Learning: Regression

d)

Supervised Learning: Regression

7.

Which of the following hyper parameter(s), when increased may cause random forest to over fit the data?

a)

Number of Trees

b)

Depth of Tree

c)

Learning Rate

d)

Number of Neurons

8.

[True or False] LogLoss evaluation metric can have negative values.

a)

True

b)

False

9.

Imagine, you are solving a classification problems with highly imbalanced class. The majority class is observed 99% of times in the training data.

Your model has 99% accuracy after taking the predictions on test data. Which of the following is true in such a case?

a)

Accuracy metric is not a good idea for imbalanced class problems.

b)

Accuracy metric is a good idea for imbalanced class problems.

c)

Precision and recall metrics are good for imbalanced class problems.

d)

Precision and recall metrics aren’t good for imbalanced class problems.

10.

................. is a widely used and effective machine learning algorithm based on the idea of bagging.

a)

Regression

b)

Classification

c)

Random Forest

d)

Decission Trees

11.

How can you handle missing or corrupted data in a dataset?

A - Drop missing rows or columns

B - Assign a unique category to missing values

C - Replace missing values with mean/median/mode

a)

A & B

b)

B & C

c)

A & C

d)

A & B & C

12.

Machine learning algorithms build a model based on sample data, known as

a)

Training Data

b)

Transfer Data

c)

Data Training

d)

None of the above

13.

Predictive models having target attribute having discrete values can be termed as

a)

Regression models

b)

Classification models

14.

Which of the following technique represents data mining procedure that tailors models to work specifically for the given training data set only?

a)

Generalization

b)

Overfitting

15.

The goal of the linear regression model is to create a model that ___________ the sum of squares of residuals or errors (SSE)           

a)

Minimizes

b)

Maximizes

16.

Which of the following is a hyperparameter ?

a)

Lambda

(Regularization)

b)

Alpha (Learning Rate)

c)

W Or Theta (Weights)

17.

Given the following, what do you think about your ML Model Performance?

- Training Accuracy: 73%

- Test Accuracy: 68%

a)

Overfitting

b)

Underfitting

c)

Can't Decide

18.

Logistic function is also termed as which of the following?

a)

Sigma function

b)

Sigmoid function

c)

Propalistic Function

19.

Given the following, what do you think about your ML Model Performance?

- Training Accuracy: 94%

- Test Accuracy: 80%

Human Accuracy Reference: 98%

Machine Accuracy Reference: 95%

a)

Overfitting

b)

Underfitting

c)

Can't Decide

20.

Which of the following correlation coefficient value indicates (at the best) that there is no relationship between two variables?

a)

-0.9

b)

-0.04

c)

0.7

d)

0.35

21.

Many substances that can burn (such as gasoline and alcohol) have a chemical structure based on carbon atoms; for this reason, they are called hydrocarbons. A chemist wants to understand how the number of carbon atoms in a molecule affects how much energy is released when that molecule combusts (meaning that it is burned). The chemists obtain the dataset below. In the column on the right, “kJ/mol” is the unit measuring the amount of energy released. examples.     

You would like to use linear regression (hθ(x)=θ_0+θ_1x) to estimate the amount of energy released (y) as a function of the number of carbon atoms (x). Which of the following do you think will be the values you obtain for θ_0 and θ_1? You should be able to select the right answer without implementing linear regression.       

a)

θ_0=−1780.0, θ_1=−530.9

b)

θ_0=−569.6, θ_1=−530.9

c)

θ_0=−1780.0, θ_1=530.9

d)

θ_0=−569.6, θ_1=530.9