Unit 5 - Practice Quiz

INT234 50 Questions
0 Correct 0 Wrong 50 Left
0/50

1 What is the primary objective of dimensionality reduction in predictive analytics?

A. To reduce the number of input variables while retaining essential information
B. To create artificial data points for training
C. To increase the number of features to capture more data
D. To increase the computational complexity of the model

2 Which phenomenon refers to the problem where the amount of data needed to generalize accurately grows exponentially with the dimensionality?

A. The Curse of Dimensionality
B. The Law of Large Numbers
C. The Overfitting Paradox
D. The Vanishing Gradient

3 Principal Component Analysis (PCA) is best described as which type of machine learning technique?

A. Reinforcement Learning
B. Supervised Learning
C. Unsupervised Learning
D. Semisupervised Learning

4 In PCA, what do the Principal Components represent?

A. The original features sorted by importance
B. The error terms of a regression model
C. New orthogonal variables that maximize variance
D. The cluster centroids of the data

5 Which mathematical concept is central to calculating Principal Components in PCA?

A. Fourier Transforms
B. Derivatives and Integrals
C. Eigenvalues and Eigenvectors
D. Sine and Cosine functions

6 Why is feature scaling (standardization) important before applying PCA?

A. Because PCA requires categorical data
B. To convert negative numbers to positive
C. To increase the number of dimensions
D. Because PCA is sensitive to the scale of the variables

7 What is the relationship between the first principal component and the second principal component?

A. The second is the inverse of the first
B. They are identical
C. They are parallel to each other
D. They are orthogonal (uncorrelated) to each other

8 Which plot is commonly used to determine the optimal number of principal components to retain?

A. Scatter plot
B. Scree plot
C. Box plot
D. Histogram

9 What is the main difference between Feature Selection and Feature Extraction?

A. Feature selection creates new variables; Feature extraction selects a subset
B. They are exactly the same
C. Feature selection selects a subset of original variables; Feature extraction creates new variables
D. Feature selection is for images; Feature extraction is for text

10 If a dataset has 50 variables and you apply PCA to select the top 5 components, what happens to the dimensionality?

A. It increases to 55
B. It becomes 0
C. It reduces to 5
D. It remains 50

11 What is a Feedforward Neural Network?

A. A network where output is fed back into the input
B. A network that only processes images
C. A network that does not use weights
D. A network where information moves in only one direction, forward, from the input nodes

12 What is the fundamental building block of a neural network?

A. Eigenvector
B. Decision Tree
C. Pixel
D. Neuron (Perceptron)

13 In a neural network, what is the role of the 'weight'?

A. To store the input data
B. To calculate the accuracy
C. To determine the number of layers
D. To represent the strength or importance of a connection between neurons

14 What is the purpose of an activation function in a neural network?

A. To initialize the weights to zero
B. To reduce the size of the dataset
C. To introduce non-linearity into the network
D. To sort the input data

15 Which of the following is a commonly used activation function that outputs values between 0 and 1?

A. Linear
B. ReLU (Rectified Linear Unit)
C. Sigmoid
D. Tanh

16 What is a Multi-layer Perceptron (MLP)?

A. A network that only has an input and an output layer
B. A type of PCA
C. A neural network with at least one hidden layer between input and output
D. A perceptron with no weights

17 What limitation of the single-layer perceptron did the MLP solve?

A. It was too slow
B. It could not handle numbers
C. It required too much memory
D. It could not solve the XOR problem (non-linearly separable data)

18 What algorithm is commonly used to train Multi-layer Perceptrons?

A. K-Means Clustering
B. Backpropagation
C. Principal Component Analysis
D. Apriori Algorithm

19 In the context of Backpropagation, what is the role of the 'Loss Function'?

A. To randomly assign weights
B. To increase the speed of the network
C. To measure the difference between the predicted output and the actual target
D. To visualize the neural network

20 What does 'Gradient Descent' do in a neural network?

A. It removes outliers from data
B. It iteratively adjusts weights to minimize the loss function
C. It increases the number of neurons
D. It converts images to text

21 What is an 'Epoch' in neural network training?

A. The time it takes to code the model
B. The initial learning rate
C. One forward pass and one backward pass of all the training examples
D. The number of hidden layers

22 Which activation function is defined as f(x) = max(0, x)?

A. Sigmoid
B. Softmax
C. Tanh
D. ReLU (Rectified Linear Unit)

23 What is the 'Bias' term in a neuron equation?

A. A prejudice in the data
B. The error rate of the model
C. The number of inputs
D. A constant added to the product of inputs and weights to shift the activation function

24 Convolutional Neural Networks (CNNs) are primarily used for which type of data?

A. Tabular sales data
B. Text sentiment analysis
C. Time-series financial data
D. Image and video data

25 What is the core operation in a CNN that allows it to detect features like edges?

A. Flattening
B. Multiplication
C. Recursion
D. Convolution

26 In a CNN, what is a 'Kernel' or 'Filter'?

A. The loss function
B. The output layer of the network
C. A small matrix of weights that slides over the input
D. A virus protection software

27 What is the purpose of 'Pooling' layers (e.g., Max Pooling) in a CNN?

A. To increase the dimensions of the image
B. To inverse the colors
C. To add color to the image
D. To reduce the spatial dimensions and computation while retaining important features

28 What does 'Stride' refer to in the context of CNNs?

A. The number of filters used
B. The size of the pooling window
C. The step size the filter moves across the input image
D. The learning rate

29 What is 'Padding' in a CNN?

A. Adding pixels (usually zeros) around the border of the input image
B. Coloring the image black and white
C. Removing pixels from the image
D. Compressing the image file

30 Before passing the output of convolutional layers to a fully connected dense layer, what operation must be performed?

A. Flattening
B. Expanding
C. Inverting
D. Rotating

31 Recurrent Neural Networks (RNNs) are best suited for what type of data?

A. Independent tabular records
B. Static images
C. Sequential data (e.g., time series, text)
D. Unstructured noise

32 What distinguishes an RNN from a standard Feedforward Neural Network?

A. RNNs only work on GPUs
B. RNNs cannot have hidden layers
C. RNNs have no activation functions
D. RNNs have a feedback loop allowing information to persist

33 In an RNN, what is the 'Hidden State'?

A. The final output prediction
B. Data that is deleted after processing
C. A layer that is never trained
D. The memory of the network capturing information about previous steps

34 What is the 'Vanishing Gradient Problem' commonly faced by standard RNNs?

A. Gradients become too large and explode
B. The network runs out of memory
C. Gradients become extremely small, preventing weights from updating effectively in earlier layers
D. The loss function becomes zero immediately

35 Which architecture was designed specifically to solve the Vanishing Gradient problem in RNNs?

A. CNN (Convolutional Neural Network)
B. Perceptron
C. PCA (Principal Component Analysis)
D. LSTM (Long Short-Term Memory)

36 What is 'Dropout' in the context of Neural Networks?

A. Stopping the training early
B. Removing bad data from the input
C. A regularization technique that randomly ignores neurons during training to prevent overfitting
D. A type of activation function

37 In a multi-class classification problem (e.g., classifying an image as a Cat, Dog, or Bird), which activation function is used in the output layer?

A. Softmax
B. Sigmoid
C. Linear
D. ReLU

38 Which of the following is a hyperparameter in a neural network?

A. Learning Rate
B. Weights
C. Biases
D. Output predictions

39 What does a Learning Rate of 0.001 imply?

A. The weights are updated by a small step size in the direction of the gradient
B. The model will learn very fast
C. The accuracy will be 0.1%
D. The model has 1000 layers

40 In the context of PCA, if the first two principal components explain 95% of the variance, what can be concluded?

A. The other components contain 95% of the information
B. The data can be effectively reduced to 2 dimensions with minimal information loss
C. The data is useless
D. You need at least 10 components

41 Which concept allows a CNN to recognize an object in an image regardless of where it is located in the image?

A. Overfitting
B. Vanishing Gradient
C. Translation Invariance
D. Linearity

42 What is the 'Gate' mechanism in LSTM used for?

A. To calculate the convolution
B. To connect to the internet
C. To control what information is added to or removed from the cell state
D. To speed up the GPU

43 Which of the following is an example of a Many-to-One RNN architecture?

A. Machine Translation (Sequence to Sequence)
B. Image Captioning (Image to Text)
C. Sentiment Analysis (Text to Sentiment Score)
D. Video Frame Prediction

44 In a fully connected (dense) layer, how are neurons connected?

A. Randomly connected
B. Only to the corresponding neuron in the previous layer
C. Neurons are not connected
D. Each neuron is connected to every neuron in the previous layer

45 Why is Non-Linearity important in dimensionality reduction (e.g., t-SNE vs PCA)?

A. It is not important
B. PCA cannot handle numbers
C. Non-linear methods are always faster
D. PCA captures linear relationships; non-linear methods capture complex manifolds

46 What is the primary disadvantage of using a Deep Neural Network compared to a Decision Tree?

A. Simplicity
B. Cannot handle large data
C. Lack of interpretability (Black Box nature)
D. Lower accuracy

47 In PCA, the Covariance Matrix is usually:

A. Diagonal with zeros
B. Undefined
C. Asymmetric
D. Symmetric

48 What is 'Weight Initialization'?

A. Setting initial values for weights (often small random numbers) before training
B. Calculating the final weights
C. Setting all weights to 1
D. Setting all weights to 0

49 Which of the following best describes 'Overfitting' in neural networks?

A. The model performs well on training data but poorly on unseen test data
B. The model performs well on test data but poorly on training data
C. The model has too few parameters
D. The model performs poorly on training data and test data

50 The Universal Approximation Theorem states that:

A. CNNs are better than RNNs
B. A neural network can never reach 100% accuracy
C. A feedforward network with a single hidden layer can approximate any continuous function
D. PCA is universal