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 increase the number of features to capture more data
B. To create artificial data points for training
C. To increase the computational complexity of the model
D. To reduce the number of input variables while retaining essential information

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

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

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

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

4 In PCA, what do the Principal Components represent?

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

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

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

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

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

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

A. They are identical
B. They are parallel to each other
C. The second is the inverse of the first
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. Scree plot
B. Scatter plot
C. Box plot
D. Histogram

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

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

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

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

11 What is a Feedforward Neural Network?

A. A network that does not use weights
B. A network where output is fed back into the input
C. A network that only processes images
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. Pixel
B. Eigenvector
C. Decision Tree
D. Neuron (Perceptron)

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

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

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

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

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

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

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 could not handle numbers
B. It required too much memory
C. It could not solve the XOR problem (non-linearly separable data)
D. It was too slow

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

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

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

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

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

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

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

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

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

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

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

A. The error rate of the model
B. A prejudice in the data
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. Text sentiment analysis
B. Tabular sales data
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. Multiplication
B. Convolution
C. Recursion
D. Flattening

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

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

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

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

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

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

29 What is 'Padding' in a CNN?

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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. Sigmoid
B. Linear
C. Softmax
D. ReLU

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

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

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 accuracy will be 0.1%
C. The model will learn very fast
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 data can be effectively reduced to 2 dimensions with minimal information loss
B. The data is useless
C. You need at least 10 components
D. The other components contain 95% of the information

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

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

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

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

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

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

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

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

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

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

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

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

47 In PCA, the Covariance Matrix is usually:

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

48 What is 'Weight Initialization'?

A. Calculating the final weights
B. Setting initial values for weights (often small random numbers) before training
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 test data but poorly on training data
B. The model performs well on training data but poorly on unseen test 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. PCA is universal
B. CNNs are better than RNNs
C. A neural network can never reach 100% accuracy
D. A feedforward network with a single hidden layer can approximate any continuous function