test1.2 Flashcards

1
Q
  1. What is the primary function of a perceptron?
    A) Solve non-linearly separable problems
    B) Perform classification of linearly separable data
    C) Generate new data points
    D) Reduce the number of inputs in a dataset
A

B

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
  1. What is the main limitation of a single-layer perceptron?
    A) It can only process numerical inputs
    B) It cannot solve non-linearly separable problems
    C) It is computationally expensive
    D) It requires multiple hidden layers
A

B

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q
  1. What does CNN stand for?
    A) Computational Neural Network
    B) Convolutional Neural Network
    C) Complex Node Network
    D) Conditional Neural Network
A

B

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q
  1. Which type of learning does a perceptron use?
    A) Supervised Learning
    B) Unsupervised Learning
    C) Reinforcement Learning
    D) Semi-supervised Learning
A

A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q
  1. What is the primary function of the activation function in a neural network?
    A) Adjust the learning rate
    B) Transform input values into a desired range
    C) Store training data
    D) Improve computational efficiency
A

B

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q
  1. In the perceptron model, what is the role of the bias term?
    A) To scale the inputs
    B) To prevent overfitting
    C) To shift the decision boundary
    D) To normalize the data
A

C

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q
  1. What is the learning rule used in perceptron training?
    A) Backpropagation
    B) Hebbian Learning
    C) Perceptron Learning Rule
    D) Gradient Descent
A

C

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q
  1. What type of problem does the β€œpunches-kicks” dataset represent?
    A) Regression
    B) Classification
    C) Clustering
    D) Reinforcement Learning
A

B

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q
  1. What is the primary goal of supervised learning?
    A) Discover hidden structures in data
    B) Predict outcomes based on labeled examples
    C) Reduce the number of features in a dataset
    D) Improve computational speed
A

B

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q
  1. What happens when the perceptron makes a classification mistake?
    A) It removes the misclassified data point
    B) It adjusts the weights using the perceptron learning rule
    C) It increases the learning rate
    D) It decreases the bias term
A

B

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q
  1. What is the role of weights in a neural network?
    A) They store the training data
    B) They determine the influence of each input
    C) They eliminate outliers
    D) They control the batch size
A

B

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q
  1. What does the perceptron activation function output?
    A) A probability between 0 and 1
    B) A binary value (0 or 1)
    C) A continuous range of values
    D) A normalized value
A

B

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q
  1. What is the error calculation formula for a perceptron?
    A)
    𝐸
    =
    (
    𝑇
    βˆ’
    𝑦
    )
    E=(Tβˆ’y)
    B)
    𝐸
    =
    1
    2
    (
    𝑇
    βˆ’
    𝑦
    )
    2
    E=
    2
    1
    ​
    (Tβˆ’y)
    2

C)
𝐸
=
βˆ‘
𝑀
𝑖
π‘₯
𝑖
E=βˆ‘w
i
​
x
i
​

D)
𝐸
=
𝑀
1
π‘₯
1
+
𝑀
2
π‘₯
2
E=w
1
​
x
1
​
+w
2
​
x
2
​

A

A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q
  1. What does Adaline stand for?
    A) Adaptive Linear Neuron
    B) Advanced Learning Network
    C) Artificial Deep Learning Algorithm
    D) Adaptive Layer Neural Entity
A

A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q
  1. Which learning method does Adaline use?
    A) Perceptron Rule
    B) Gradient Descent
    C) Reinforcement Learning
    D) Clustering
A

B

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q
  1. What is the advantage of the sigmoid activation function over the step function?
    A) It is computationally cheaper
    B) It allows continuous weight updates
    C) It eliminates the need for training
    D) It only works with deep networks
17
Q
  1. What type of function does Adaline use for weight updates?
    A) Discrete step function
    B) Mean squared error
    C) Softmax function
    D) Logarithmic function
18
Q
  1. What is the purpose of gradient descent in Adaline?
    A) To update weights in the direction of decreasing error
    B) To normalize input data
    C) To classify non-linearly separable data
    D) To eliminate redundant neurons
19
Q
  1. Which function does the perceptron struggle to classify?
    A) AND
    B) OR
    C) XOR
    D) NOT
20
Q
  1. What is the purpose of backpropagation?
    A) To adjust weights in a multi-layer network
    B) To find linearly separable solutions
    C) To eliminate outliers in a dataset
    D) To create a single-layer perceptron
21
Q
  1. How many hidden layers are needed in a Multi-Layer Perceptron (MLP) to solve XOR?
    A) 0
    B) 1
    C) 2
    D) 3
22
Q
  1. What is the role of the learning rate (
    𝛼
    Ξ±) in weight updates?
    A) Controls the step size for weight updates
    B) Determines the number of neurons in the hidden layer
    C) Fixes the number of training iterations
    D) Normalizes input data
23
Q
  1. What is the main characteristic of deep neural networks?
    A) They contain multiple hidden layers
    B) They require no training
    C) They only work with image data
    D) They use rule-based learning
24
Q
  1. What is the main purpose of hidden layers in a neural network?
    A) To make training faster
    B) To allow the network to learn complex patterns
    C) To store training examples
    D) To increase memory usage
25
Q
  1. Which technique prevents a neural network from overfitting?
    A) Using more hidden layers
    B) Decreasing the learning rate
    C) Regularization (e.g., dropout)
    D) Increasing the bias
26
Q
  1. What is the output range of the sigmoid activation function?
    A) -1 to 1
    B) 0 to 1
    C) -∞ to +∞
    D) 0 to 10
27
Q
  1. What is the advantage of ReLU over sigmoid?
    A) It is faster to compute
    B) It provides better accuracy for small datasets
    C) It does not require weight updates
    D) It eliminates bias terms
28
Q
  1. What is the primary function of a convolutional neural network (CNN)?
    A) Text processing
    B) Feature extraction for images
    C) Solving XOR problems
    D) Performing reinforcement learning
29
Q
  1. What is the advantage of having more than one hidden layer in a neural network?
    A) It reduces computational cost
    B) It allows the network to learn more complex patterns
    C) It removes the need for activation functions
    D) It eliminates the error function
30
Q
  1. Which of the following is NOT a supervised learning algorithm?
    A) Perceptron
    B) k-Means Clustering
    C) Support Vector Machine (SVM)
    D) Adaline