1What is the main purpose of dimensionality reduction?
Dimensionality Reduction
Easy
A.To reduce the number of features
B.To increase the number of records
C.To convert data into labels
D.To remove all target values
Correct Answer: To reduce the number of features
Explanation:
Dimensionality reduction simplifies a dataset by reducing the number of features while keeping important information.
Incorrect! Try again.
2Which problem can dimensionality reduction help address?
Dimensionality Reduction
Easy
A.The creation of missing values
B.The curse of dimensionality
C.The absence of target labels
D.The increase of duplicate records
Correct Answer: The curse of dimensionality
Explanation:
Reducing features can help manage the curse of dimensionality, which occurs when high-dimensional data becomes difficult to analyze.
Incorrect! Try again.
3A dataset has 50 features, and dimensionality reduction changes it to 10 features. What has happened?
Dimensionality Reduction
Easy
A.The feature space has been reduced
B.The target variable has been duplicated
C.The data has been converted to text
D.The number of observations has increased
Correct Answer: The feature space has been reduced
Explanation:
The number of input features decreased from 50 to 10, so the feature space was reduced.
Incorrect! Try again.
4Which is a common benefit of using dimensionality reduction?
Dimensionality Reduction
Easy
A.More missing data
B.More unrelated features
C.Larger storage requirements
D.Simpler data visualization
Correct Answer: Simpler data visualization
Explanation:
Reducing data to two or three dimensions can make it easier to visualize patterns and groups.
Incorrect! Try again.
5What type of information should a good dimensionality reduction method try to preserve?
Dimensionality Reduction
Easy
A.Formatting details in the data
B.Random noise in the data
C.Important patterns in the data
D.Duplicate columns in the data
Correct Answer: Important patterns in the data
Explanation:
A useful method reduces the number of features while preserving important relationships and patterns.
Incorrect! Try again.
6What does PCA stand for?
Principal Component Analysis (PCA)
Easy
A.Predictive Classification Algorithm
B.Principal Component Analysis
C.Primary Correlation Assignment
D.Pattern Calculation Approach
Correct Answer: Principal Component Analysis
Explanation:
PCA is an abbreviation for Principal Component Analysis, a popular dimensionality reduction technique.
Incorrect! Try again.
7In PCA, what are principal components?
Principal Component Analysis (PCA)
Easy
A.New directions of maximum variance
B.Original rows of the dataset
C.Names assigned to target classes
D.Randomly selected input values
Correct Answer: New directions of maximum variance
Explanation:
Principal components are new directions that capture as much variation in the data as possible.
Incorrect! Try again.
8Which principal component usually captures the greatest amount of variance?
Principal Component Analysis (PCA)
Easy
A.The second component
B.The final component
C.The random component
D.The first component
Correct Answer: The first component
Explanation:
PCA orders components so that the first component captures the greatest variance.
Incorrect! Try again.
9What does PCA typically produce from the original features?
Principal Component Analysis (PCA)
Easy
A.A larger set of duplicate features
B.A smaller set of new features
C.A list of missing observations
D.A collection of class labels
Correct Answer: A smaller set of new features
Explanation:
PCA transforms the original variables into a smaller set of new variables called principal components.
Incorrect! Try again.
10Before applying PCA, why are features often standardized?
Principal Component Analysis (PCA)
Easy
A.To place features on comparable scales
B.To remove every feature from the data
C.To turn numerical values into labels
D.To increase the number of observations
Correct Answer: To place features on comparable scales
Explanation:
Standardization prevents features with large numerical scales from dominating the PCA results.
Incorrect! Try again.
11What measure is commonly used to decide how many PCA components to keep?
Principal Component Analysis (PCA)
Easy
A.Count of empty cells
B.File size in megabytes
C.Number of class names
D.Explained variance
Correct Answer: Explained variance
Explanation:
Explained variance shows how much information or variation is retained by the selected components.
Incorrect! Try again.
12Are principal components usually correlated with one another?
Principal Component Analysis (PCA)
Easy
A.No, they are generally uncorrelated
B.No, they are always categorical
C.Yes, they are always identical
D.Yes, they must have the same values
Correct Answer: No, they are generally uncorrelated
Explanation:
PCA creates components that are generally uncorrelated with each other.
Incorrect! Try again.
13How does information generally move through a feedforward neural network?
Feedforward Neural Networks
Easy
A.From output to input
B.Only between output neurons
C.In random circular paths
D.From input to output
Correct Answer: From input to output
Explanation:
In a feedforward neural network, information moves in one direction from the input layer through hidden layers to the output layer.
Incorrect! Try again.
14Which layer receives the original features in a neural network?
Feedforward Neural Networks
Easy
A.The input layer
B.The output layer
C.The error layer
D.The hidden layer
Correct Answer: The input layer
Explanation:
The input layer receives the feature values used by the neural network.
Incorrect! Try again.
15What is the main role of the output layer?
Feedforward Neural Networks
Easy
A.To standardize every feature
B.To remove all hidden neurons
C.To produce the network prediction
D.To store the original dataset
Correct Answer: To produce the network prediction
Explanation:
The output layer provides the final prediction or result generated by the network.
Incorrect! Try again.
16What is the purpose of an activation function in a neural network?
Feedforward Neural Networks
Easy
A.To count the observations
B.To rename the features
C.To add nonlinearity
D.To sort the target values
Correct Answer: To add nonlinearity
Explanation:
Activation functions allow neural networks to learn nonlinear relationships between inputs and outputs.
Incorrect! Try again.
17What does a neural network weight represent?
Feedforward Neural Networks
Easy
A.The number of output classes
B.The strength of an input connection
C.The name of a hidden layer
D.The size of the training dataset
Correct Answer: The strength of an input connection
Explanation:
A weight controls how strongly an input contributes to a neuron's calculation.
Incorrect! Try again.
18What is an MLP?
Multi-layer Perceptron (MLP)
Easy
A.A method for sorting database rows
B.A chart used for measuring variance
C.A technique for removing target labels
D.A neural network with multiple layers
Correct Answer: A neural network with multiple layers
Explanation:
A Multi-layer Perceptron is a feedforward neural network that contains an input layer, one or more hidden layers, and an output layer.
Incorrect! Try again.
19Which type of layer is found between the input and output layers of an MLP?
Multi-layer Perceptron (MLP)
Easy
A.A sampling layer
B.A label layer
C.A hidden layer
D.A variance layer
Correct Answer: A hidden layer
Explanation:
Hidden layers process information between the input layer and the output layer.
Incorrect! Try again.
20What is one common use of an MLP?
Multi-layer Perceptron (MLP)
Easy
A.File compression only
B.Image storage only
C.Classification and regression
D.Database indexing only
Correct Answer: Classification and regression
Explanation:
MLPs can be trained to predict categories in classification tasks or numerical values in regression tasks.
Incorrect! Try again.
21A dataset contains 200 variables, but many variables are highly correlated. What is the main benefit of applying dimensionality reduction before training a predictive model?
Dimensionality Reduction
Medium
A.It guarantees that every prediction will be correct
B.It replaces the need to split data into training and testing sets
C.It ensures that all original variables remain unchanged and equally influential
D.It can reduce redundancy and computational cost
Correct Answer: It can reduce redundancy and computational cost
Explanation:
Dimensionality reduction represents the data using fewer features, which can reduce redundancy, training time, and the risk of overfitting.
Incorrect! Try again.
22A model performs very well on training data but poorly on unseen data when trained with 500 features and only 100 observations. Which issue is dimensionality reduction most likely to help address?
Dimensionality Reduction
Medium
A.Underfitting caused by excessive regularization
B.Class imbalance caused by unequal labels
C.Data leakage caused by a randomized train-test split
D.Overfitting caused by excessive features
Correct Answer: Overfitting caused by excessive features
Explanation:
Reducing the number of features can simplify the model and remove irrelevant variation, helping reduce overfitting in high-dimensional settings.
Incorrect! Try again.
23Why should feature scaling often be performed before a distance-based dimensionality reduction method?
Dimensionality Reduction
Medium
A.To convert every feature into a categorical variable
B.To increase the number of dimensions automatically
C.To prevent large-scale variables from dominating distances
D.To ensure that the reduced data has exactly zero variance
Correct Answer: To prevent large-scale variables from dominating distances
Explanation:
Without scaling, variables measured in larger units can dominate distance calculations and disproportionately influence the reduced representation.
Incorrect! Try again.
24A two-dimensional dataset is reduced to one dimension, and the retained dimension explains 82% of the original variance. How should this result be interpreted?
Dimensionality Reduction
Medium
A.The reduced feature must have a correlation of 0.82 with every original feature
B.The representation preserves exactly 82% of every data value
C.The discarded dimension contains no information under any condition
D.The representation preserves most variation in one dimension
Correct Answer: The representation preserves most variation in one dimension
Explanation:
Explained variance measures how much overall data variability is retained, not how accurately each individual feature or observation is reproduced.
Incorrect! Try again.
25In PCA, the first principal component is the direction that:
Principal Component Analysis (PCA)
Medium
A.Has the smallest possible number of observations
B.Produces the largest prediction error for the target
C.Captures the maximum variance in the data
D.Uses only the original feature with the greatest average value
Correct Answer: Captures the maximum variance in the data
Explanation:
PCA chooses the first component as the direction along which the projected observations have the greatest variance.
Incorrect! Try again.
26Before applying PCA to variables measured in dollars, kilograms, and centimeters, what is usually the most appropriate preprocessing step?
Principal Component Analysis (PCA)
Medium
A.Convert all variables into binary indicators
B.Standardize the variables to comparable scales
C.Remove the variable with the largest numerical values
D.Sort the observations according to the target variable
Correct Answer: Standardize the variables to comparable scales
Explanation:
Standardization prevents variables with larger units or numerical ranges from dominating the covariance structure used by PCA.
Incorrect! Try again.
27Suppose the eigenvalues from a PCA are , , , and . What proportion of total variance is explained by the first two components?
Principal Component Analysis (PCA)
Medium
A.
B.
C.
D.
Correct Answer:
Explanation:
The first two components account for units of variance, while total variance is . Therefore, the proportion is .
Incorrect! Try again.
28A PCA model is fitted on a training set and then used to transform a test set. Which procedure avoids information leakage?
Principal Component Analysis (PCA)
Medium
A.Fit scaling and PCA using the combined dataset
B.Fit PCA separately on the training and test sets
C.Fit PCA on the test set and apply its components to training data
D.Fit scaling and PCA using training data only
Correct Answer: Fit scaling and PCA using training data only
Explanation:
The test set must remain unseen during preprocessing. Training-derived scaling parameters and PCA components are then applied to the test data.
Incorrect! Try again.
29A principal component is written as . What does the coefficient indicate, assuming the input variables are standardized?
Principal Component Analysis (PCA)
Medium
A.The contribution weight of to the component
B.The correlation between and
C.The predicted value of for an observation with component score one
D.The percentage of variance explained by
Correct Answer: The contribution weight of to the component
Explanation:
The coefficient is a loading that indicates how strongly the standardized variable contributes to the linear combination defining .
Incorrect! Try again.
30Why can PCA components sometimes be difficult to interpret in a business application?
Principal Component Analysis (PCA)
Medium
A.Each component is always expressed in the original feature units
B.PCA guarantees that every component corresponds to a known business concept
C.PCA can only be applied to one variable at a time
D.Each component may combine many original variables
Correct Answer: Each component may combine many original variables
Explanation:
A principal component is a weighted combination of features, so its meaning may not correspond directly to a single interpretable business variable.
Incorrect! Try again.
31In a feedforward neural network, information flows from the input layer to the output layer without:
Feedforward Neural Networks
Medium
A.Passing information backward through recurrent connections
B.Applying any mathematical transformation to inputs
C.Using weights to combine input values
D.Producing an output from the final layer
Correct Answer: Passing information backward through recurrent connections
Explanation:
A feedforward network processes information in one direction. It does not contain recurrent connections that send outputs back to earlier layers.
Incorrect! Try again.
32A neuron receives inputs and , with weights , , and bias . What is its pre-activation value?
Feedforward Neural Networks
Medium
A.
B.
C.
D.
Correct Answer:
Explanation:
The pre-activation value is .
Incorrect! Try again.
33Which activation function is commonly used in the output layer of a binary classification network with one output neuron?
Feedforward Neural Networks
Medium
A.Linear
B.Softmax
C.ReLU
D.Sigmoid
Correct Answer: Sigmoid
Explanation:
A sigmoid activation maps the output to a value between and , which can represent the probability of the positive class.
Incorrect! Try again.
34A neural network is used to predict house prices. Which output-layer activation and loss pairing is generally appropriate?
Feedforward Neural Networks
Medium
A.Softmax activation with binary cross-entropy
B.ReLU activation with hinge loss for four classes
C.Sigmoid activation with categorical cross-entropy
D.Linear activation with mean squared error
Correct Answer: Linear activation with mean squared error
Explanation:
House price prediction is a regression task. A linear output can produce continuous values, and mean squared error is commonly used for training.
Incorrect! Try again.
35During training, the loss decreases on the training set but increases on the validation set after several epochs. What is the most likely explanation?
Feedforward Neural Networks
Medium
A.The network has no trainable parameters
B.The validation set is being used as the training target
C.The activation function has removed all nonlinear relationships
D.The network is beginning to overfit
Correct Answer: The network is beginning to overfit
Explanation:
Increasing validation loss alongside decreasing training loss indicates that the network is fitting training-specific patterns that do not generalize.
Incorrect! Try again.
36What is the main advantage of using hidden layers with nonlinear activation functions in an MLP?
Multi-layer Perceptron (MLP)
Medium
A.They guarantee that the training loss is always zero
B.They allow the network to model nonlinear relationships
C.They eliminate the need for weights and biases
D.They ensure that all input variables receive identical coefficients
Correct Answer: They allow the network to model nonlinear relationships
Explanation:
Nonlinear hidden layers enable an MLP to learn complex decision boundaries and functional relationships that a single linear layer cannot represent.
Incorrect! Try again.
37An MLP has 4 input features, one hidden layer with 6 neurons, and 2 output neurons. Including biases, how many trainable parameters does it have?
Multi-layer Perceptron (MLP)
Medium
A.42
B.44
C.52
D.36
Correct Answer: 44
Explanation:
The input-to-hidden layer has parameters. The hidden-to-output layer has . The total is .
Incorrect! Try again.
38For a three-class classification problem, an MLP has three output neurons. Which output configuration is most appropriate?
Multi-layer Perceptron (MLP)
Medium
A.A ReLU output that returns only nonnegative class scores
B.A single linear output with unrestricted real values
C.Three independent sigmoid outputs that need not sum to one
D.Softmax outputs whose probabilities sum to one
Correct Answer: Softmax outputs whose probabilities sum to one
Explanation:
For mutually exclusive classes, softmax converts the three output scores into probabilities that sum to one.
Incorrect! Try again.
39Why is backpropagation important when training an MLP?
Multi-layer Perceptron (MLP)
Medium
A.It converts continuous targets into categorical labels
B.It selects the number of input features without using validation data
C.It computes gradients used to update network parameters
D.It randomly removes neurons from every hidden layer
Correct Answer: It computes gradients used to update network parameters
Explanation:
Backpropagation applies the chain rule to calculate how the loss changes with respect to weights and biases, enabling optimization.
Incorrect! Try again.
40An MLP performs poorly on both the training and validation sets. Which change is most likely to address underfitting?
Multi-layer Perceptron (MLP)
Medium
A.Add stronger regularization and reduce the number of hidden units
B.Increase model capacity or reduce excessive regularization
C.Stop training earlier and use a smaller learning rate only
D.Evaluate the model on the training set repeatedly without changing it
Correct Answer: Increase model capacity or reduce excessive regularization
Explanation:
Poor performance on both sets suggests underfitting. A larger network or less restrictive regularization may allow the model to learn the underlying patterns.
Incorrect! Try again.
41A dataset contains 500 features and 2,000 observations. The first 50 features are nearly exact linear combinations of the remaining features, while the target depends on a low-variance direction. Which strategy best reduces dimensionality while limiting the risk of discarding predictive information?
Dimensionality Reduction
Hard
A.Retain principal components explaining 95% of variance
B.Remove features using only their marginal variance
C.Select features with the smallest pairwise correlations
D.Apply supervised dimensionality reduction using the target
Correct Answer: Apply supervised dimensionality reduction using the target
Explanation:
Unsupervised variance-based methods can discard low-variance directions that predict the target. A supervised method incorporates target relevance when constructing or selecting dimensions.
Incorrect! Try again.
42A dimensionality-reduction pipeline is evaluated with five-fold cross-validation. Standardization and projection are fitted once on the complete dataset before the folds are created. What is the principal statistical problem?
Dimensionality Reduction
Hard
A.The validation folds contain fewer observations
B.Information from validation folds leaks into training
C.The reduced features become perfectly orthogonal
D.The model loses access to the original features
Correct Answer: Information from validation folds leaks into training
Explanation:
Fitting preprocessing on all observations uses validation-fold statistics to construct the representation. Each fold must fit scaling and dimensionality reduction on its training portion only.
Incorrect! Try again.
43A high-dimensional dataset has 10,000 features but only 80 observations. Which issue most directly makes an unconstrained nonlinear embedding unreliable for downstream prediction?
B.The method may fit sampling noise and unstable neighborhoods
C.The reduced coordinates cannot be used by classifiers
D.The original features are necessarily statistically independent
Correct Answer: The method may fit sampling noise and unstable neighborhoods
Explanation:
With far more dimensions than observations, local distances and neighborhood relationships are poorly estimated. Flexible nonlinear reductions can therefore produce unstable, sample-specific representations.
Incorrect! Try again.
44A compressed representation is used for a fraud classifier. The reconstruction error is very low, but validation AUC falls substantially compared with the original features. Which conclusion is most defensible?
Dimensionality Reduction
Hard
A.The classifier must have been trained without regularization
B.The compression preserved most predictive information
C.Low reconstruction error does not guarantee target information retention
D.The compressed representation contains no useful variance
Correct Answer: Low reconstruction error does not guarantee target information retention
Explanation:
Reconstruction measures how well input variation is preserved, not whether variation associated with the target is preserved. Predictive directions may be small in input-space reconstruction terms.
Incorrect! Try again.
45Two reduced representations have the same number of dimensions. Representation A preserves pairwise distances globally, while Representation B preserves local neighborhoods but distorts large-scale distances. Which task most favors Representation B?
Dimensionality Reduction
Hard
A.Estimating global linear regression coefficients
B.Recovering the original covariance matrix
C.Detecting local clusters and neighborhood anomalies
D.Computing a globally faithful reconstruction
Correct Answer: Detecting local clusters and neighborhood anomalies
Explanation:
A locally faithful representation is designed to preserve nearby relationships. It is therefore more suitable for local cluster structure and neighborhood-based anomaly analysis than for global geometric reconstruction.
Incorrect! Try again.
46For centered data, the covariance matrix has eigenvalues , , and . How much total variance is explained by the first two principal components?
Principal Component Analysis (PCA)
Hard
A.
B.
C.
D.
Correct Answer:
Explanation:
The explained variance ratio is .
Incorrect! Try again.
47Two features measure the same physical quantity in meters and centimeters. PCA is applied to the raw covariance matrix rather than the correlation matrix. What is the main consequence?
Principal Component Analysis (PCA)
Hard
A.The covariance matrix becomes diagonal before decomposition
B.The principal directions become invariant to unit changes
C.The centimeter feature dominates because of its scale
D.The number of nonzero principal components necessarily doubles
Correct Answer: The centimeter feature dominates because of its scale
Explanation:
Changing units multiplies a feature's variance and covariance terms. Covariance-based PCA is therefore scale-sensitive, so the centimeter representation can dominate unless features are standardized.
Incorrect! Try again.
48A standardized dataset has two nearly identical features. The first principal component has approximately equal loadings, while the second has opposite loadings and a tiny eigenvalue. What does the second component primarily represent?
Principal Component Analysis (PCA)
Hard
A.The difference or measurement noise between features
B.A direction guaranteed to predict the response
C.The total variance contributed by both features
D.The shared signal common to both features
Correct Answer: The difference or measurement noise between features
Explanation:
For highly correlated features, the equal-loading direction captures their shared variation. The opposite-loading direction captures small discrepancies, often reflecting noise or feature-specific effects.
Incorrect! Try again.
49A PCA model is fitted to training data, and a new observation is projected using without subtracting the training mean. What error is introduced?
Principal Component Analysis (PCA)
Hard
A.The eigenvalues are recomputed from one observation
B.The projection becomes supervised by the target
C.The principal axes lose their orthogonality
D.The new observation is projected relative to the wrong origin
Correct Answer: The new observation is projected relative to the wrong origin
Explanation:
PCA projections must use the same centering applied during fitting: . Omitting the training mean shifts every projected coordinate.
Incorrect! Try again.
50A PCA component has loading vector . Which statement remains true if the algorithm returns instead of ?
Principal Component Analysis (PCA)
Hard
A.Its explained variance changes sign
B.Its eigenvalue becomes negative
C.Its projected scores change sign but its subspace is unchanged
D.Its correlation with every feature remains identical
Correct Answer: Its projected scores change sign but its subspace is unchanged
Explanation:
Eigenvectors are identifiable only up to sign. Replacing with reverses scores and loadings but leaves the component's one-dimensional subspace and explained variance unchanged.
Incorrect! Try again.
51A feedforward network uses ReLU activations and no biases. For any input , it satisfies . Which architectural property explains this behavior?
Feedforward Neural Networks
Hard
A.The use of squared-error loss
B.Orthogonality of all hidden-layer weights
C.Positive homogeneity of linear layers and ReLU
D.Softmax normalization at the output
Correct Answer: Positive homogeneity of linear layers and ReLU
Explanation:
When biases are absent, linear maps and ReLU satisfy positive homogeneity: for . Their composition preserves this scaling property.
Incorrect! Try again.
52A binary classifier outputs a sigmoid probability, but the positive class occurs in only 1% of cases. Which evaluation practice is most appropriate for assessing ranking quality under severe imbalance?
Feedforward Neural Networks
Hard
A.Use precision-recall analysis and average precision
B.Use mean squared error on class labels only
C.Use accuracy at the default threshold
D.Use ROC AUC only with balanced test sampling
Correct Answer: Use precision-recall analysis and average precision
Explanation:
Precision-recall metrics reveal performance on the rare positive class and are more informative than accuracy or ROC AUC alone when prevalence is very low.
Incorrect! Try again.
53A neural network has a linear output layer and is trained with mean squared error. If every hidden activation is also linear, what is the maximum function class the network can represent?
Feedforward Neural Networks
Hard
A.A polynomial of degree equal to network depth
B.Any continuous nonlinear function
C.A single affine transformation of the input
D.Only a constant function
Correct Answer: A single affine transformation of the input
Explanation:
A composition of affine transformations is itself affine. Without a nonlinear activation, adding hidden layers does not increase the representational class.
Incorrect! Try again.
54During training, a hidden ReLU unit receives strongly negative pre-activations for every example in a minibatch and has zero gradient for its incoming weights. Which intervention most directly addresses this state?
Feedforward Neural Networks
Hard
A.Increase the output-layer learning rate only
B.Remove the loss function from the output layer
C.Replace ReLU with an activation allowing negative gradients
D.Increase the batch size while keeping all parameters fixed
Correct Answer: Replace ReLU with an activation allowing negative gradients
Explanation:
A ReLU unit has zero derivative for negative inputs, so it can become inactive and stop receiving gradient updates. Leaky ReLU or another nonzero-negative-slope activation can restore gradient flow.
Incorrect! Try again.
55A network produces logits . Which statement correctly describes softmax probabilities and their behavior if the same constant is added to every logit?
Feedforward Neural Networks
Hard
A.The probabilities become equal after normalization
B.The logits must first be converted to negative values
C.The largest probability is assigned to the third logit
D.The probabilities are unchanged by adding a common constant
Correct Answer: The probabilities are unchanged by adding a common constant
Explanation:
Softmax is shift-invariant because . The first logit remains the most probable for .
Incorrect! Try again.
56An MLP has one hidden layer with two ReLU units and a linear output. Why can it represent a piecewise-linear function with more than two linear regions?
Multi-layer Perceptron (MLP)
Hard
A.Each ReLU contributes a distinct activation boundary
C.The input dimension determines exactly two regions
D.The loss function creates additional hidden units
Correct Answer: Each ReLU contributes a distinct activation boundary
Explanation:
Each ReLU changes slope across its activation boundary. Combining multiple such units can create several activation patterns and therefore more than two piecewise-linear regions.
Incorrect! Try again.
57An MLP for multiclass classification uses two output neurons with independent sigmoid activations for three mutually exclusive classes. What is the fundamental modeling defect?
Multi-layer Perceptron (MLP)
Hard
A.Two outputs cannot uniquely encode three exclusive classes
B.Sigmoid activations cannot produce values between zero and one
C.Independent sigmoids cannot model nonlinearity in hidden layers
D.The hidden layer must contain exactly three neurons
Correct Answer: Two outputs cannot uniquely encode three exclusive classes
Explanation:
Mutually exclusive three-class prediction requires three class scores or an equivalent encoding with an appropriate decision rule. Two independent sigmoid outputs describe multilabel events, not a complete three-class distribution.
Incorrect! Try again.
58An MLP fits training data almost perfectly but performs poorly on a temporally later test set. The input includes a feature computed using records collected after each prediction time. What is the most likely cause?
Multi-layer Perceptron (MLP)
Hard
A.Insufficient output-layer dimensionality
B.Underfitting caused by excessive regularization
C.Data leakage from a future-dependent feature
D.Vanishing gradients caused by the test set
Correct Answer: Data leakage from a future-dependent feature
Explanation:
A feature using information unavailable at prediction time creates an unrealistically easy training problem. Its absence in future deployment causes the observed performance collapse.
Incorrect! Try again.
59Consider an MLP with input dimension , one hidden layer of units, and one scalar output. Every neuron has a bias. How many trainable parameters does it contain?
Multi-layer Perceptron (MLP)
Hard
A.
B.
C.
D.
Correct Answer:
Explanation:
The hidden layer has weights and biases. The output layer has weights and one bias, giving .
Incorrect! Try again.
60An MLP uses batch normalization before a ReLU layer. At inference time, which statistics should batch normalization use?
Multi-layer Perceptron (MLP)
Hard
A.The target variable's mean and variance
B.The current inference example's mean and variance
C.Running training estimates of mean and variance
D.Statistics recomputed from the complete test set
Correct Answer: Running training estimates of mean and variance
Explanation:
Inference must be deterministic and independent of other examples. Batch normalization therefore uses running estimates accumulated during training rather than statistics from the current batch or test set.
Incorrect! Try again.
Did this save you a night before the exam?
LPU Notes is free, and it stays free. Ads cover part of the server bill.
The rest comes out of a student's own pocket: the domain, the storage,
and keeping the site up through the weeks everyone needs it at once.
The payment button didn't load. An ad blocker or a filtered network is the usual reason.
to try again.
Nothing here is ever locked, and nothing unlocks. Chip in only if it was worth it.
What it pays for →