Questions: Multilayer Perceptrons (MLPs)

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

You build a 10-layer neural network but replace every activation function with the identity function (f(x) = x), so every neuron computes a purely linear transformation. Compared to a single-layer linear network, this 10-layer network can represent:

AExponentially more complex functions because it has 10 times as many layers
BExactly the same class of functions — only linear mappings — because the composition of linear functions is linear
CMore complex functions because deeper networks always have greater representational power
DSlightly more complex functions due to the increased number of parameters
Question 2 Multiple Choice

A student reads the universal approximation theorem and concludes: 'Since a single hidden layer MLP can approximate any continuous function, there is never a practical reason to use deep networks.' What is the critical flaw in this reasoning?

AThe theorem only applies to regression problems, not classification
BThe theorem requires the activation function to be linear, which contradicts using hidden layers
CThe theorem guarantees approximation exists but does not bound the number of neurons required — a shallow network may need exponentially more neurons than a deep one for the same accuracy
DDeep networks are only better when training data is large, so the theorem applies equally to small datasets
Question 3 True / False

A neural network without any nonlinear activation functions in its hidden layers has the same representational power as a single linear layer, regardless of how many hidden layers it has.

TTrue
FFalse
Question 4 True / False

According to the universal approximation theorem, in practice a single hidden-layer MLP is generally as efficient (in terms of total parameters) as a deep network for approximating complex functions.

TTrue
FFalse
Question 5 Short Answer

Why is a nonlinear activation function essential in hidden layers of an MLP, and what would be lost without it?

Think about your answer, then reveal below.