Unit 6: Artificial neural networks - Practice Quiz

BTY587 — Data Analysis And Simulations 60 Questions
0 Correct 0 Wrong 60 Left
0/60

1 What does the abbreviation ANN stand for?

introduction of deep learning algorithms Easy
A. Analog Network Node
B. Advanced Neural Notation
C. Automated Numeric Node
D. Artificial Neural Network

2 The basic computational unit of an artificial neural network is called a:

introduction of deep learning algorithms Easy
A. Cluster
B. Compiler
C. Register
D. Neuron (node)

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

introduction of deep learning algorithms Easy
A. To label the dataset
B. To reduce the file size
C. To store data permanently
D. To introduce non-linearity

4 Which term describes a neural network with many hidden layers?

introduction of deep learning algorithms Easy
A. Shallow node network
B. Single-layer network
C. Flat learning network
D. Deep neural network

5 In an ANN, what are the numerical values that are adjusted during training called?

introduction of deep learning algorithms Easy
A. Pixels
B. Labels
C. Weights
D. Tokens

6 Which algorithm is commonly used to train neural networks by updating weights based on error?

introduction of deep learning algorithms Easy
A. Binary search
B. Backpropagation
C. Hashing
D. Bubble sort

7 The function that measures the difference between predicted and actual output is called the:

introduction of deep learning algorithms Easy
A. Loss function
B. Input function
C. Sort function
D. Search function

8 Which optimization technique minimizes the loss function by moving toward its steepest descent?

introduction of deep learning algorithms Easy
A. Data cleaning
B. Feature scaling
C. Linear regression
D. Gradient descent

9 Which type of neural network is most commonly used for image recognition tasks?

types of ANN Easy
A. Hopfield Network
B. Convolutional Neural Network (CNN)
C. Recurrent Neural Network (RNN)
D. Radial Basis Network

10 Which type of neural network is best suited for sequential data such as text or time series?

types of ANN Easy
A. Autoencoder
B. Feedforward Network
C. Convolutional Neural Network (CNN)
D. Recurrent Neural Network (RNN)

11 In a feedforward neural network, information flows in which direction?

types of ANN Easy
A. Randomly between layers
B. Only forward, input to output
C. Only backward, output to input
D. In circular loops

12 Which network type is designed to learn a compressed representation of data for tasks like dimensionality reduction?

types of ANN Easy
A. Autoencoder
B. GAN
C. Perceptron
D. CNN

13 What does GAN stand for in deep learning?

types of ANN Easy
A. Generative Adversarial Network
B. Grouped Activation Node
C. Graph Aligned Network
D. General Analog Network

14 The simplest type of artificial neural network, consisting of a single neuron, is called a:

types of ANN Easy
A. Autoencoder
B. Perceptron
C. Transformer
D. Boltzmann machine

15 Which specialized RNN variant is designed to handle long-term dependencies in sequences?

types of ANN Easy
A. LSTM (Long Short-Term Memory)
B. Autoencoder
C. Perceptron
D. CNN

16 Deep learning is commonly used in healthcare to analyze medical images such as:

case studies for the application of deep learning in biology and health care research Easy
A. Weather reports
B. Text messages
C. Bank statements
D. X-rays and MRI scans

17 In biology, deep learning has been famously applied to predict the 3D structure of:

case studies for the application of deep learning in biology and health care research Easy
A. Volcanoes
B. Bridges
C. Planets
D. Proteins

18 Which healthcare task uses deep learning to identify cancerous cells in tissue slides?

case studies for the application of deep learning in biology and health care research Easy
A. Payroll processing
B. Digital pathology image analysis
C. Appointment scheduling
D. Inventory tracking

19 In genomics, deep learning is used to analyze which type of data?

case studies for the application of deep learning in biology and health care research Easy
A. Stock prices
B. Satellite orbits
C. DNA and gene sequences
D. Traffic signals

20 Which of the following is a healthcare application of deep learning?

case studies for the application of deep learning in biology and health care research Easy
A. Predicting disease from patient records
B. Painting house walls
C. Playing background music
D. Cooking recipes automatically

21 A researcher is designing a network to classify pixel images of handwritten digits while preserving spatial relationships between pixels. Which type of ANN is most appropriate?

types of ANN Medium
A. Hopfield Network
B. Recurrent Neural Network (RNN)
C. Single-layer Perceptron
D. Convolutional Neural Network (CNN)

22 For modeling a time-series of gene expression measured over sequential days, where the value at each step depends on previous steps, which architecture is best suited?

types of ANN Medium
A. Feedforward Neural Network
B. Convolutional Neural Network (CNN)
C. Radial Basis Function Network
D. Recurrent Neural Network (RNN)

23 What is the key limitation of a standard RNN that motivated the development of LSTM networks?

types of ANN Medium
A. The vanishing gradient problem over long sequences
B. Excessive memory requirements for small inputs
C. Lack of a nonlinear activation function
D. Inability to process any sequential data

24 An autoencoder is primarily used for which of the following tasks?

types of ANN Medium
A. Sorting data into predefined clusters using labels
B. Supervised classification of labeled images
C. Unsupervised learning of compressed data representations
D. Reinforcement learning of game strategies

25 In a Generative Adversarial Network (GAN), what are the two competing components?

types of ANN Medium
A. A teacher and a student
B. A generator and a discriminator
C. An encoder and a decoder
D. A forward pass and a backward pass

26 Which statement best distinguishes a feedforward neural network from a recurrent neural network?

types of ANN Medium
A. Both have identical topologies and differ only in activation functions
B. A feedforward network has no cycles, while an RNN contains feedback loops that feed outputs back as inputs across time steps to model sequential dependencies
C. A feedforward network can only handle images
D. A feedforward network uses cycles while an RNN does not

27 Which type of ANN is specifically designed for graph-structured data such as molecular structures or protein interaction networks?

types of ANN Medium
A. Graph Neural Network (GNN)
B. Long Short-Term Memory (LSTM)
C. Multilayer Perceptron (MLP)
D. Convolutional Neural Network (CNN)

28 Why is a nonlinear activation function such as ReLU essential in a deep neural network?

introduction of deep learning algorithms Medium
A. It reduces the number of parameters needed
B. It removes the need for a loss function
C. It guarantees the network will never overfit
D. Without nonlinearity, stacked layers collapse into a single linear transformation

29 The ReLU activation function is defined as which of the following?

introduction of deep learning algorithms Medium
A.
B.
C.
D.

30 During backpropagation, what is being computed and used to update the network weights?

introduction of deep learning algorithms Medium
A. The raw input values fed forward through the network
B. The number of neurons in each hidden layer
C. The gradient of the loss function with respect to each weight
D. The random initial weight values

31 A model achieves 99% accuracy on training data but only 70% on test data. What is this a clear sign of?

introduction of deep learning algorithms Medium
A. Underfitting
B. A learning rate that is too small
C. Vanishing gradients
D. Overfitting

32 Which technique randomly deactivates a fraction of neurons during training to reduce overfitting?

introduction of deep learning algorithms Medium
A. Batch normalization
B. Dropout
C. Gradient clipping
D. Data augmentation

33 In gradient descent, if the learning rate is set too high, what is the most likely consequence?

introduction of deep learning algorithms Medium
A. The network automatically adds more layers
B. The model always converges faster with no downside
C. The loss may diverge or oscillate instead of converging
D. The gradients become exactly zero

34 Which loss function is most appropriate for a multi-class classification problem with a softmax output layer?

introduction of deep learning algorithms Medium
A. Mean absolute error
B. Hinge loss for regression
C. Categorical cross-entropy
D. Mean squared error

35 What is the primary purpose of the softmax function in the output layer of a classification network?

introduction of deep learning algorithms Medium
A. It computes the gradient of the loss function directly
B. It reduces the number of output neurons to one
C. It converts raw scores into a probability distribution over classes that sums to 1
D. It normalizes the input images before training

36 DeepMind's AlphaFold made a major breakthrough in biology by accurately predicting which of the following?

case studies for the application of deep learning in biology and health care research Medium
A. The 3D structure of proteins from their amino acid sequences
B. The stock prices of pharmaceutical companies
C. The exact age of a patient from a blood sample
D. The complete DNA sequence of the human genome

37 In a case study applying CNNs to diagnose diabetic retinopathy, what type of input data is used?

case studies for the application of deep learning in biology and health care research Medium
A. Genomic sequence text
B. Patient audio recordings
C. Tabular billing records
D. Retinal fundus images

38 A hospital deploys a deep learning model to detect tumors in medical scans. Why is high recall (sensitivity) often prioritized over high precision in this context?

case studies for the application of deep learning in biology and health care research Medium
A. Recall requires less computation than precision
B. Missing a true tumor (false negative) can be far more harmful to the patient than a false alarm
C. Precision is impossible to compute for medical images
D. High recall always guarantees the highest overall accuracy

39 When applying deep learning to medical imaging with limited labeled data, which strategy leverages a model pre-trained on a large general image dataset?

case studies for the application of deep learning in biology and health care research Medium
A. Increasing the learning rate
B. Random weight initialization from scratch
C. Transfer learning
D. Removing all hidden layers

40 In genomics, RNNs and CNNs are applied to DNA sequences primarily to accomplish which task?

case studies for the application of deep learning in biology and health care research Medium
A. Replace the need for laboratory sequencing entirely
B. Identify functional motifs and predict regulatory elements from nucleotide sequences
C. Store patient records in a distributed database
D. Physically synthesize new DNA molecules in the network

41 In a Recurrent Neural Network (RNN) trained with Backpropagation Through Time (BPTT), the gradient of the loss with respect to early time steps involves a product of Jacobians. If the largest eigenvalue of the recurrent weight matrix's Jacobian is consistently , what phenomenon dominates?

types of ANN Hard
A. Saturation of the output softmax layer only
B. Exploding gradients that destabilize weight updates
C. Perfect gradient flow across all time steps
D. Vanishing gradients that hinder learning of long-term dependencies

42 A Convolutional Neural Network uses a kernel with stride 1 and no padding on a input. What is the spatial dimension of the resulting feature map?

types of ANN Hard
A.
B.
C.
D.

43 Which architectural property most fundamentally distinguishes an autoencoder used for anomaly detection from a standard feedforward classifier?

types of ANN Hard
A. It applies recurrent connections to model temporal sequences
B. It is trained to reconstruct its input via a bottleneck, using reconstruction error as the signal
C. It uses labeled anomaly classes to minimize cross-entropy loss
D. It relies on max-pooling to downsample spatial features

44 In a Generative Adversarial Network (GAN), the generator and discriminator play a minimax game with value function . At the theoretical global optimum, what value does output for real and generated samples?

types of ANN Hard
A. everywhere, since the generator wins
B. for real and for generated samples
C. oscillates between and indefinitely
D. everywhere, as the two distributions become indistinguishable

45 Why do Long Short-Term Memory (LSTM) networks mitigate the vanishing gradient problem more effectively than vanilla RNNs?

types of ANN Hard
A. The cell state provides a nearly linear path allowing gradients to flow largely unattenuated
B. They replace all sigmoid activations with ReLU to prevent saturation
C. They eliminate recurrent connections entirely, using only feedforward layers
D. They increase the learning rate adaptively at every time step

46 A Radial Basis Function (RBF) network differs from a multilayer perceptron primarily in how its hidden units respond. Which statement is correct?

types of ANN Hard
A. RBF units compute weighted sums followed by softmax normalization
B. RBF units produce localized responses based on distance to a center, giving local approximation
C. RBF networks require at least three hidden layers to function
D. RBF units use global sigmoidal activations identical to MLP hidden units

47 During backpropagation, the ReLU activation has a derivative that is for . What practical failure mode can this cause?

introduction of deep learning algorithms Hard
A. Vanishing gradients across all layers regardless of input sign
B. The 'dying ReLU' problem, where neurons output zero and stop updating permanently
C. Exploding gradients due to unbounded positive activations
D. Guaranteed convergence to the global minimum

48 Adam optimizer combines momentum and RMSProp. Given first moment and second moment , why is bias correction applied in early iterations?

introduction of deep learning algorithms Hard
A. It forces the second moment to equal the first moment
B. It converts the gradients into probabilities for stability
C. The moment estimates are initialized at zero and are biased toward zero early in training
D. It prevents the learning rate from ever decreasing

49 Batch Normalization normalizes layer inputs using mini-batch statistics, then applies learnable parameters and . Why are and necessary?

introduction of deep learning algorithms Hard
A. They replace the need for any activation function
B. They let the network recover representational capacity, including undoing normalization if optimal
C. They compute the gradient of the loss directly
D. They fix the mean and variance to and permanently

50 Dropout with rate is applied during training. At inference time, why must activations be scaled (or weights adjusted)?

introduction of deep learning algorithms Hard
A. To increase the variance of predictions at test time
B. To zero out half the neurons during inference as well
C. To convert the network into a recurrent architecture
D. To match the expected activation magnitude, since all units are active at test time

51 Consider training with cross-entropy loss and a softmax output. Why is the combination of softmax + cross-entropy numerically and computationally preferred over softmax followed by a separate MSE loss for classification?

introduction of deep learning algorithms Hard
A. It always produces sparser weight matrices
B. Its gradient simplifies to , giving stable, well-scaled updates
C. It removes the need for any activation in hidden layers
D. It guarantees the loss surface is globally convex

52 Xavier (Glorot) initialization sets weight variance to . What problem is this designed to prevent?

introduction of deep learning algorithms Hard
A. The optimizer becoming stuck at a saddle point
B. Signal and gradient variance shrinking or growing exponentially across layers
C. Overfitting caused by too many training epochs
D. Class imbalance in the training dataset

53 In transfer learning, a pretrained CNN is adapted to a small medical imaging dataset. Which strategy best reduces overfitting while leveraging learned features?

introduction of deep learning algorithms Hard
A. Freeze the classifier head and train only the input layer
B. Remove all convolutional layers and use only dense layers
C. Freeze early convolutional layers and fine-tune only the later layers and classifier head
D. Randomly reinitialize all layers and train from scratch

54 AlphaFold predicts protein 3D structure from amino acid sequences. Which deep learning innovation was most central to its breakthrough accuracy in CASP14?

case studies for the application of deep learning in biology and health care research Hard
A. Unsupervised clustering of protein images without sequence data
B. Recurrent networks processing one amino acid at a time without pairwise features
C. A single fully connected network mapping sequence directly to coordinates
D. Attention-based modeling of residue-residue relationships and evolutionary (MSA) information

55 A CNN trained to detect diabetic retinopathy achieves 99% accuracy on its training hospital's data but performs poorly at a new clinic. What is the most likely cause?

case studies for the application of deep learning in biology and health care research Hard
A. Cross-entropy loss is inappropriate for image classification
B. The model has too few parameters to memorize training data
C. The learning rate was set too low during training
D. Domain shift, where imaging equipment and population differences alter the data distribution

56 In genomics, a CNN scans DNA sequences to predict transcription factor binding sites. Why are convolutional filters particularly well suited to this task?

case studies for the application of deep learning in biology and health care research Hard
A. They require the motif to appear at a fixed position to be detected
B. They act like position weight matrices detecting motifs regardless of location in the sequence
C. They inherently normalize GC content across the genome
D. They model long-range temporal dependencies better than any other layer

57 When deploying a deep learning model for cancer diagnosis, why is model calibration (not just accuracy) critical?

case studies for the application of deep learning in biology and health care research Hard
A. Calibration increases the raw accuracy above 100%
B. Calibration converts the classifier into a regression model
C. Calibration replaces the need for a validation dataset
D. Predicted probabilities must reflect true likelihoods to support clinical risk decisions

58 A recurrent model (LSTM) is applied to electronic health record (EHR) time series to predict sepsis onset. What key advantage does the LSTM provide over a static feedforward classifier here?

case studies for the application of deep learning in biology and health care research Hard
A. It removes the need to handle missing values in the data
B. It eliminates class imbalance between septic and non-septic patients
C. It guarantees interpretability of every prediction to clinicians
D. It captures temporal patterns and irregular dependencies across sequential clinical measurements

59 In drug discovery, Graph Neural Networks (GNNs) represent molecules as graphs. Why is this representation superior to a fixed-length fingerprint vector for property prediction?

case studies for the application of deep learning in biology and health care research Hard
A. It requires no training data because chemistry is deterministic
B. It ignores molecular topology to focus only on atom counts
C. Message passing over atoms and bonds learns task-specific structural features directly
D. It converts every molecule into a single scalar automatically

60 A U-Net architecture is widely used for biomedical image segmentation. What structural feature most directly enables its precise localization of boundaries?

case studies for the application of deep learning in biology and health care research Hard
A. Purely recurrent connections between encoder and decoder
B. Absence of any downsampling to preserve full resolution throughout
C. Skip connections that fuse high-resolution encoder features with decoder upsampling
D. A single global average pooling layer at the output