wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

SCRS-QUIZ-MANIA

Total questions: 25

Worksheet time: 26mins

Name
Class
Date
1.

1)Which of the following is a convex polygon?

a)
b)
c)
d)
2.

Calculate the number of trainable parameter in keras/tensorflow sequential model

a)

12

b)

13

c)

14

d)

10

3.

Given Below Is the logo of scrs vit in RGB channels then which of the following is of BGR channels

a)
b)
c)
d)
4.

Given below is a simple neural network architecture and I have a 100000 rows of cleaned data.If I train the below model with this data then which of the following Is correct

a)

this model get underfitted for above data

b)

this model get overfitted for above data

c)

All neural networks are black box which cannot be predicted without providing sample data

d)

none of the above

5.

After training a data of diabetes in Indian population these are the results of loss and accuracy after training the data

a)

The data is overfitted to the neural network model

b)

The data is underfitted to the neural network model

c)

The data is perfectly fit to the neural network model

d)

The data is just fit to the model

6.

A 4-input neuron has weights 1, 2, 3 and 4. The transfer function is linear with the constant of proportionality being equal to 2. The inputs are 4, 3, 2 and 1 respectively. What will be the output?

a)

30

b)

40

c)

50

d)

60

7.

Which search method takes less memory?

a)

Depth-First Search

b)

Breadth-First search

c)

Both (a) and (b)

d)

Linear Search.

e)

Optimal search.

8.

Which is the best way to go for Game playing problem?

a)

Linear approach

b)

Heuristic approach

c)

Random approach

d)

Optimal approach

e)

Stratified approach.

9.

select the correct answer

a)

precision =1

b)

recall =1

c)

precision =1 AND recall =1

d)

F1 score :-2

10.

10. Which of the following is NOT a parameter of the confusion matrix?

a)

True positive

b)

False negetive

c)

Untrue positive

d)

True Negetive

11.

Which of these is a predictive model ?

a)

Naive bayes

b)

Random forest

c)

Decision tree

d)

All of the above

12.

Which graph is used to represent semantic network?

a)

Undirected graph

b)

Directed graph

c)

Directed Acyclic graph

d)

Directed complete graph

13.

Which of the following is an activation function

a)
b)
c)
d)
e)

All the above are activation function

14.

What does SVM stands for?

a)

support vector machine

b)

schematic vector machine

c)

support vertical machine

d)

support vector mechanism

15.

In training a neural network, you notice that the loss does not decrease in the few starting epochs.

The reasons for this could be:

1-The learning is rate is low

2-Regularization parameter is high

3-Stuck at local minima

What according to you are the probable reasons?

a)

1 and 2

b)

2 and 3

c)

3 and 1

d)

all 1 and 2 and 3

16.

What is the sequence of the following tasks in a perceptron?

1)Initialize weights of perceptron randomly

2)Go to the next batch of dataset

3)If the prediction does not match the output, change the weights

4)For a sample input, compute an output

a)

1, 2, 3, 4

b)

4, 3, 2, 1

c)

3, 1, 2, 4

d)

1, 4, 3, 2

17.

The number of neurons in the output layer should match the number of classes (Where the number of classes is greater than 2) in a supervised learning task. True or False?

a)

True

b)

False

18.

What are the factors to select the depth of neural network?

1 - Type of neural network (eg. MLP, CNN etc)

2 - Input data

3 - Computation power, i.e. Hardware capabilities and software capabilities

4 - Learning Rate

5 - The output function to map

a)

1, 2, 4, 5

b)

2, 3, 4, 5

c)

1, 3, 4, 5

d)

All of these

19.

I have a data of sudoku with solution and feeded this data to neural network and after training the accuracy of the data is 90%?Do you think that the Neural Network has intrepreted the logic behind the game?

a)

Maybe because It have gave the accuracy for testing data

b)

YES!!!

c)

NO!!!

d)

Cannot say particularly

20.

which of the following is false?

a)

neural networks are artificial copy of the human brain

b)

neural networks have high computational rates than conventional computers

c)

neural networks learn by examples

d)

none of the mentioned

21.

Guess the output of the above python code

a)

0 Python

1 Interview

2 Questions

b)

0 Python

1 Questions

2 Interview

c)

0 Interview

1 Python

2 Question

d)

0 Questions

1 Interview

2 Python

22.

Predict the output of the open-cv code for the following logo


#python code below

(thresh, img_bin) = cv2.threshold(img, 100, 255, cv2.THRESH_BINARY | cv2.THRESH_OTSU)


img_bin = img_bin

cv2.imshow("Image_bin.jpg", img_bin)

cv2.waitKey(0)

a)
b)
c)
d)
23.

guess the output of the above python code

a)

[['mon', 3], ['tue', 1], ['wed', 1], ['fri', 1], ['thu', 1], ['sun', 2]]

b)

[['mon', 3], ['tue', 1], ['wed', 1], ['fri', 1], ['thu', 2], ['sun', 1]]

c)

[['mon', 2], ['tue', 1], ['wed', 1], ['fri', 1], ['thu', 1], ['sun', 2]]

d)

[['mon', 3], ['tue', 4], ['wed', 1], ['fri', 1], ['thu', 1], ['sun', 2]]

24.

Guess the output of the following python code:-

a)
b)
c)
d)
25.

I have vit id card now my i aim is to extract that id card from the image /photo .If so what algorithm can i use to extract the card (Like in the above picture)

a)

sobel Edge detection

b)

canny Edge detection

c)

Hough Line Transform

d)

All of the above