Unit 5: Dimensionality Reduction and Neural Networks - Practice Quiz

INT234 — Predictive Analytics 60 Questions
0 Correct 0 Wrong 60 Left
0/60

1 What 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

2 Which 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

3 A 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

4 Which 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

5 What 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

6 What 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

7 In 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

8 Which 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

9 What 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

10 Before 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

11 What 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

12 Are 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

13 How 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

14 Which 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

15 What 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

16 What 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

17 What 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

18 What 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

19 Which 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

20 What 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

21 A 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

22 A 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

23 Why 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

24 A 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

25 In 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

26 Before 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

27 Suppose 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.

28 A 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

29 A 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

30 Why 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

31 In 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

32 A neuron receives inputs and , with weights , , and bias . What is its pre-activation value?

Feedforward Neural Networks Medium
A.
B.
C.
D.

33 Which 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

34 A 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

35 During 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

36 What 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

37 An 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

38 For 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

39 Why 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

40 An 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

41 A 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

42 A 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

43 A high-dimensional dataset has 10,000 features but only 80 observations. Which issue most directly makes an unconstrained nonlinear embedding unreliable for downstream prediction?

Dimensionality Reduction Hard
A. The embedding cannot represent nonlinear relationships
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

44 A 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

45 Two 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

46 For 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.

47 Two 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

48 A 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

49 A 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

50 A 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

51 A 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

52 A 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

53 A 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

54 During 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

55 A 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

56 An 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
B. The output layer automatically adds nonlinear curvature
C. The input dimension determines exactly two regions
D. The loss function creates additional hidden units

57 An 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

58 An 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

59 Consider 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.

60 An 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