Topic 3: Perceptron

Topic 3: Perceptron

University

5 Qs

quiz-placeholder

Similar activities

Κυβερνοασφάλεια: Κρυπτογραφία – Είδη κρυπτογράφησης

Κυβερνοασφάλεια: Κρυπτογραφία – Είδη κρυπτογράφησης

9th Grade - University

10 Qs

Διαδικτυακές ευκαιρίες

Διαδικτυακές ευκαιρίες

University

10 Qs

Computer Vision Pertemuan Ke 10

Computer Vision Pertemuan Ke 10

University

10 Qs

CS6801- Multi­core Architectures and Programming

CS6801- Multi­core Architectures and Programming

University

10 Qs

Neural Networks Quiz

Neural Networks Quiz

University

10 Qs

Intro to ML: Neural Networks Lecture 1 Part 2

Intro to ML: Neural Networks Lecture 1 Part 2

University

6 Qs

Κουίζ για Ψηφιακή Ευημερία

Κουίζ για Ψηφιακή Ευημερία

12th Grade - University

10 Qs

DeepLearning Lab Summer2023 FAT MCQ

DeepLearning Lab Summer2023 FAT MCQ

University

10 Qs

Topic 3: Perceptron

Topic 3: Perceptron

Assessment

Quiz

Computers

University

Hard

Created by

Pradeep Isawasan

Used 1+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 2 pts

Which of the following best describes the McCulloch-Pitts (MP) neuron model?

It uses a weighted sum and applies a sigmoid activation function

It outputs a continuous value between 0 and 1

It computes a threshold function based on binary inputs

It uses gradient descent to update weights

2.

MULTIPLE CHOICE QUESTION

10 sec • 2 pts

What is the key difference between the MP neuron and the Perceptron?

MP neuron supports continuous inputs while Perceptron does not

Perceptron uses learnable weights, while MP neuron uses fixed binary.

MP neuron is used for regression tasks

Perceptron cannot solve linearly separable problems

3.

MULTIPLE CHOICE QUESTION

10 sec • 2 pts

Which of the following is a limitation of the McCulloch-Pitts (MP) neuron model?

It uses non-linear activation functions

It cannot process multiple inputs

It cannot learn from data because it has fixed weights and threshold

It supports continuous-valued outputs

4.

MULTIPLE CHOICE QUESTION

10 sec • 2 pts

Which of the following problems can be solved by a single-layer perceptron?

XOR logic function

Image classification

Linearly separable problems like AND and OR

Recurrent sequence modeling

5.

MULTIPLE CHOICE QUESTION

10 sec • 2 pts

In the Perceptron learning rule, how are weights updated?

w = w + η (target−predicted) × input

w = w × η + input

w = w − η × input

Weights are not updated in the Perceptron model