Deep Learning MCQs

This section focuses on "Deep Learning" in Data Science. These Data Science Multiple Choice Questions (MCQ) should be practiced to improve the skills required for various interviews (campus interview, walk-in interview, company interview), placements, entrance exams and other competitive examinations.

1. Which of the following is a subset of machine learning?

A. Numpy
B. SciPy
C. Deep Learning
D. All of the above

View Answer


2. How many layers Deep learning algorithms are constructed?

A. 2
B. 3
C. 4
D. 5

View Answer


3. The first layer is called the?

A. inner layer
B. outer layer
C. hidden layer
D. None of the above

View Answer


4. RNNs stands for?

A. Receives neural networks
B. Report neural networks
C. Recording neural networks
D. Recurrent neural networks

View Answer


5. Which of the following is/are Common uses of RNNs?

A. BusinessesHelp securities traders to generate analytic reports
B. Detect fraudulent credit-card transaction
C. Provide a caption for images
D. All of the above

View Answer


6. Which of the following is well suited for perceptual tasks?

A. Feed-forward neural networks
B. Recurrent neural networks
C. Convolutional neural networks
D. Reinforcement Learning

View Answer


7. CNN is mostly used when there is an?

A. structured data
B. unstructured data
C. Both A and B
D. None of the above

View Answer


8. Which neural network has only one hidden layer between the input and output?

A. Shallow neural network
B. Deep neural network
C. Feed-forward neural networks
D. Recurrent neural networks

View Answer


9. Which of the following is/are Limitations of deep learning?

A. Data labeling
B. Obtain huge training datasets
C. Both A and B
D. None of the above

View Answer


10. Deep learning algorithms are _______ more accurate than machine learning algorithm in image classification.

A. 33%
B. 37%
C. 40%
D. 41%

View Answer


11. In which of the following applications can we use deep learning to solve the problem?

A. Protein structure prediction
B. Prediction of chemical reactions
C. Detection of exotic particles
D. All of the above

View Answer


12. Which of the following statements is true when you use 1×1 convolutions in a CNN?

A. It can help in dimensionality reduction
B. It can be used for feature pooling
C. It suffers less overfitting due to small kernel size
D. All of the above

View Answer


13. The number of nodes in the input layer is 10 and the hidden layer is 5. The maximum number of connections from the input layer to the hidden layer are

A. 50
B. less than 50
C. more than 50
D. It is an arbitrary value

View Answer


14. The input image has been converted into a matrix of size 28 X 28 and a kernel/filter of size 7 X 7 with a stride of 1. What will be the size of the convoluted matrix?

A. 20x20
B. 21x21
C. 22x22
D. 25x25

View Answer


15. In a simple MLP model with 8 neurons in the input layer, 5 neurons in the hidden layer and 1 neuron in the output layer. What is the size of the weight matrices between hidden output layer and input hidden layer?

A. [1 X 5] , [5 X 8]
B. [5 x 1] , [8 X 5]
C. [8 X 5] , [5 X 1]
D. [8 X 5] , [ 1 X 5]

View Answer


16. Which of the following functions can be used as an activation function in the output layer if we wish to predict the probabilities of n classes (p1, p2..pk) such that sum of p over all n equals to 1?

A. Softmax
B. ReLu
C. Sigmoid
D. Tanh

View Answer


17. Assume a simple MLP model with 3 neurons and inputs= 1,2,3. The weights to the input neurons are 4,5 and 6 respectively. Assume the activation function is a linear constant value of 3. What will be the output ?

A. 32
B. 64
C. 96
D. 128

View Answer


18. Which of the following would have a constant input in each epoch of training a Deep Learning model?

A. Weight between input and hidden layer
B. Weight between hidden and output layer
C. Biases of all hidden layer neurons
D. Activation function of output layer

View Answer


19. Sentiment analysis using Deep Learning is a many-to one prediction task

A. True
B. False
C. Can be true and fasle
D. can not say

View Answer


20. In CNN, having max pooling always decrease the parameters?

A. True
B. False
C. Can be true and false
D. Can not say

View Answer





Discussion



* You must be logged in to add comment.