Artificial Neural Networks MCQs: 10 Solved Questions with Explanations

Attempt ten live question-bank items on artificial neural networks, check the keyed answers, and use one worked neuron to connect inputs, weights, bias, and activation.

Prashant Jain

KnowledgeGate AI educator

Updated 16 Jul 20267 min read

Terms such as neuron, weight, dendrite, and synapse are easy to mix up with network properties and nearby AI concepts. These 10 published questions from Introduction to Artificial Neural Networks explain why each keyed option wins. Questions 9 and 10 cover policy and latent space because they belong to the live tagged set.

How to use this 10-question ANN set

Choose an option before reading its explanation. Record each miss under capability, network structure, biological analogy, or adjacent AI vocabulary. Place these areas inside the wider UGC NET Computer Science topic map when planning revision.

The answer labels follow the bank mapping throughout: A is option 0, B is option 1, C is option 2, D is option 3, and E is option 4.

ANN capabilities and defining characteristics: Questions 1 to 3

Question 1

Bank tag: UGC NET, Computer Science, January 2026

Given below are two statements: one is labelled as Assertion A and the other is labelled as Reason R.

>

Assertion A: Neural networks are capable of approximating any continuous function to an arbitrary degree of accuracy.

>

Reason R: This is explained by the universal approximation theorem.

>

In the light of the above statements, choose the most appropriate answer from the options given below:

  • A. Both A and R are correct and R is the correct explanation of A

  • B. Both A and R are correct but R is NOT the correct explanation of A

  • C. A is correct but R is not correct

  • D. A is not correct but R is correct

Answer: A

The universal approximation theorem provides the basis for the assertion, so R correctly explains A. Under the theorem's conditions, a suitable network can approximate continuous functions to arbitrary accuracy. This does not mean every architecture learns every function automatically.

Question 2

Bank tag: UGC NET, Computer Science, December 2022

Choose the correct option describing the features of Artificial neural network

A. It is essentially machine learning algorithm.

B. It is useful when solving the problems for which the data set is very large.

C. They are able to extract features without input from the programmer.

D. These are systems modeled on the human brain and nervous system

Choose the correct answer from the options given below:

  • A. All the statements are correct.

  • B. Only B & C are correct.

  • C. Only A & D are correct.

  • D. All the statements are not correct.

Answer: A

Each statement captures an ANN feature: ANNs are machine-learning models, often benefit from large datasets, can learn representations instead of relying only on hand-engineered features, and use terminology inspired by biological nervous systems. More data can help, but does not guarantee better performance.

Question 3

Bank tag: UGC NET, Computer Science, January 2025

Which of the following are correct for the neural network?A. The training time depends upon the size of network.B. Neural network can be simulated on the conventional computer.C. Neural network mimic the same way as that of the humans brain.D. A neural network include feedback.Choose the correct answer from the options given below:

  • A. A and B only

  • B. A, C and D only

  • C. A, B and C only

  • D. A and C only

Answer: B

The recorded key treats A, C, and D as intended characteristics. Network size affects training time, C refers to biological inspiration, and D covers networks with feedback. B is also true in practice because conventional computers run neural networks, so this bank item has answer-key ambiguity.

Layers, weights, and learning: Question 4

Question 4

Bank tag: UGC NET, Computer Science, August 2024

Read the below passage and answer the questions.Artificial Neural Networks (ANNs) are computational models inspired by the human brain's neural networks. They consist of inter-connected nodes, or neurons, organized into layers: an input layer, one or more hidden layers, and an output layer. Each connection between neurons has a weight that adjusts as learning progresses, allowing the network to adapt and improve its performance. ANNs are particularly effective in recognizing patterns, making them valuable for tasks such as image and speech recognition, Natural language processing, and predictive analytics. Learning in ANNs typically involves training algorithms like backpropagation, which minimize the error by adjusting the weights. As a subset of machine learning, ANNs have revolutionized the field of Artificial Intelligence by providing solutions to complex problems that traditional algorithms struggle with.Artificial Neural Networks (ANNs) are inspired by:

  • A. Quantum mechanics

  • B. Human brain's neural network

  • C. Computer Hardware architecture

  • D. Genetic algorithm.

Answer: B

The first sentence gives the answer. Inputs enter, weighted connections carry signals, hidden layers transform them, and training adjusts weights to reduce error. The brain supplies the inspiration, but an ANN does not reproduce biological cognition. For related concepts, review the broader Paper 2 syllabus areas.

Biological-neuron vocabulary behind ANN terminology: Questions 5 to 8

Question 5

Bank tag: UPPSC Polytechnic Lecturer, Computer Science, 2022

What are dendrites in Neural Network?

  • A. Nuclear projections

  • B. Fibers of nerves

  • C. Other name of nucleus

  • D. None of the above

Answer: B

Dendrites are branching nerve fibres that receive signals and carry them towards the cell body. In the ANN analogy, numerical inputs play this receiving role, but are not literal dendrites.

Question 6

Bank tag: UPPSC Polytechnic Lecturer, Computer Science, 2022

Signal transmission at a typical synapse in a neural network is a –

  • A. Chemical Process

  • B. Physical Process and Chemical Process both

  • C. Physical Process

  • D. None of the above

Answer: A

At a typical biological synapse, a neurotransmitter crosses the synaptic cleft and triggers the next neuron. Electrical synapses exist, but the keyed introductory answer is chemical. An ANN weight represents connection strength, not this chemistry.

Question 7

Bank tag: DSSSB, Computer Science, 2021

What is a neuron in Neural Networks?

  • A. A neuron is a small cell that receives electrochemical signals from various sources and transmits electrical impulses to other neurons.

  • B. A neuron is a cell that sends electromagnetic signals to axons.

  • C. A neuron is a small cell that sends electric impulses to ions.

  • D. A neuron is a cell which has the capability to predict the situation from past trends.

Answer: A

The other options confuse the signal type, destination, or behaviour of a trained system with one biological neuron's function. An artificial neuron instead combines weighted inputs and a bias, then applies an activation function.

Question 8

Bank tag: DSSSB, Computer Science, 2021

What is axon in Neural Networks?

  • A. It is a long cylindrical connection that carries impulses from the neurons.

  • B. It is a small cell used to perform basic logical operations.

  • C. It is a small cell which contains electric signal.

  • D. It is a collection of neurons.

Answer: A

An axon is the long projection carrying an impulse away from a neuron's cell body. An artificial neuron's computed output has the analogous outgoing role.

Keep the biological chain in signal order: dendrites receive, the cell body integrates, the axon carries away, and a synapse passes the signal to the next cell.

A two-panel biological-to-artificial neuron bridge. Left panel labels dendrites receive, cell body integrates, axon carries away, and chemical synapse passes the signal. Right panel shows x1 = 1, x2 = 0.5, w1 = 0.6, w2 = -0.2, and b = 0.1 entering a summation node; label z = 0.6, sigmoid output 0.6457, threshold 0.5, and class 1. Connect reception to inputs, synaptic strength to weights, cell-body integration to weighted sum plus bias, and axon to outgoing activation. Caption: “Analogy, not literal equivalence.”

Adjacent AI vocabulary in the tagged set: Questions 9 and 10

These live items extend beyond ANN anatomy to two nearby AI concepts.

Question 9

Bank tag: MPPSC, Computer Science, 2025

What is the primary role of a policy in a reinforcement learning system?

  • A. To define the long term goals of the agent

  • B. To predict future rewards based on the current state

  • C. To map from perceived states of the environment to actions

  • D. To model the environments behaviour

Answer: C

A policy maps a state to an action. For battery = low, it may choose move to charger. A reward defines desirability, a value function estimates future return, and an environment model predicts consequences, eliminating A, B, and D.

Question 10

Bank tag: IBPS, 2025

What is latent space in Generative AI?

  • A. Structured input features directly fed into the model

  • B. Intermediary abstract space

  • C. Final output space generated after decoding

  • D. Pre-processed training dataset

  • E. Hidden memory layer used for storing learned weights

Answer: B

Follow the flow: 28 × 28 image = 784 inputs -> encoder -> 16-value latent vector -> decoder -> reconstructed image. The latent vector is the intermediary abstract representation, not the input, output, dataset, or weights. A policy chooses actions; latent space represents data.

Fully worked bridge: one artificial neuron with actual values

Take x1 = 1, x2 = 0.5, w1 = 0.6, w2 = -0.2, and b = 0.1.

  1. Compute the weighted sum: z = x1w1 + x2w2 + b = (1)(0.6) + (0.5)(-0.2) + 0.1 = 0.6.

  2. Apply the sigmoid: sigmoid(z) = 1 / (1 + e^-0.6) ≈ 0.6457.

  3. Compare with threshold 0.5: 0.6457 > 0.5, so the predicted class is 1.

The inputs are incoming signals, weights express connection strength, bias shifts the sum, and activation produces the output. Larger networks repeat this unit across layers; training changes the weights.

If only x2 changes from 0.5 to 2:

z = (1)(0.6) + (2)(-0.2) + 0.1 = 0.3

sigmoid(0.3) ≈ 0.5744, so the class remains 1. The output falls because the negative weight makes a larger x2 reduce the sum.

Answer pattern, scorecard, and the next step

Answer strip: 1-A, 2-A, 3-B, 4-B, 5-B, 6-A, 7-A, 8-A, 9-C, 10-B

If you score 8-10, move forward. At 5-7, revise the missed category. At 0-4, rebuild the neuron, layer, weight, and activation picture. Correct these recurring traps: literal biological equivalence, exam-key ambiguity, policy versus value, and latent representations versus parameters.

For the complete subject sequence, continue with NTA UGC NET Paper 2, whose live catalog includes Artificial Intelligence within Paper 2. Use Zero to Hero for the broader CS route containing the ANN module, or browse CS Fundamentals across related topics.