|Artificial Intelligence PYQs

UGC NET Computer Science Artificial Intelligence Previous Year Questions (PYQs)

Practise 33 Artificial Intelligence questions asked in UGC NET Computer Science from 2020–2025. Questions cover Problem solving by state space search, Uninformed search, Heuristic search, Game playing, Knowledge representation and Semantic networks. Every question is shown with its options and the correct answer, free to read.

33 PYQs2020–2025Answers includedFree

Practise Artificial Intelligence as timed sets

Focused 10-question sets with instant scoring, explanations, and weak-area analysis.

Start practice

All 33 Artificial Intelligence PYQs

Ordered newest exam first. Each question links back to the full paper it came from.

  1. What is the correct sequence of steps used in knowledge-base design?

    A. Ask questions about the intended interpretation.
    B. Choose the task domain or world to represent.
    C. Select atoms to represent propositions of interest.
    D. Tell the system propositions that are true in the intended interpretation.

    1. AA, B, C, D
    2. BB, C, D, A
    3. CC, D, A, B
    4. DD, A, B, C

    Answer: (B) B, C, D, A

    Explanation

    Sign in to read the full explanation
  2. Which are correct for a neural network?

    A. Training time depends on network size.
    B. A neural network can be simulated on a conventional computer.
    C. A neural network mimics the way the human brain works.
    D. A neural network includes feedback.

    1. AA and B only
    2. BA, C and D only
    3. CA, B and C only
    4. DA and C only

    Answer: (B) A, C and D only

    Explanation

    Sign in to read the full explanation
  3. Which is not a component of the classic planning definition?

    1. AInit
    2. BDomain
    3. CAction
    4. DGoal

    Answer: (B) Domain

    Explanation

    Sign in to read the full explanation
  4. Which one of the following is not related to feed-forward networks in the backpropagation algorithm?

    1. ABoolean function
    2. BContinuous function
    3. CArbitrary function
    4. DGreedy function

    Answer: (D) Greedy function

    Explanation

    Sign in to read the full explanation
  5. Definitions organised into the four categories Thinking Humanly, Thinking Rationally, Acting Humanly and Acting Rationally describe

    1. AMachine Learning
    2. BDeep Learning
    3. CArtificial Intelligence
    4. DNeural Network

    Answer: (C) Artificial Intelligence

    Explanation

    Sign in to read the full explanation
  6. Match List-I with List-II.

    List-IList-II
    A. Decision tree
    B. Supervised learning
    C. Artificial neural network
    D. Instance-based learning
    I. Delta learning rule
    II. Self-organizing map
    III. C4.5 algorithm
    IV. Nonlinear regression algorithm
    1. AA-I, B-II, C-III, D-IV
    2. BA-II, B-III, C-IV, D-I
    3. CA-III, B-IV, C-I, D-II
    4. DA-IV, B-I, C-II, D-III

    Answer: (C) A-III, B-IV, C-I, D-II

    Explanation

    Sign in to read the full explanation
  7. Match List-I with List-II.

    List-IList-II
    (A) The activation function(I) is called the delta rule.
    (B) The learning method of perceptron(II) is one of the key components of the perceptron, as in the most common neural network architecture.
    (C) Areas of application of artificial neural networks(III) is always boolean, like a switch.
    (D) The output of the perceptron(IV) system identification and control.
    1. A(A)-(II), (B)-(IV), (C)-(III), (D)-(I)
    2. B(A)-(IV), (B)-(III), (C)-(II), (D)-(I)
    3. C(A)-(II), (B)-(I), (C)-(IV), (D)-(III)
    4. D(A)-(III), (B)-(IV), (C)-(II), (D)-(I)

    Answer: (C) (A)-(II), (B)-(I), (C)-(IV), (D)-(III)

    Explanation

    Sign in to read the full explanation
  8. Arrange the following steps in proper sequence
    involved in a Genetic Algorithm :
    A. Selection
    B. Initialization
    C. Crossover
    D. Mutation
    E. Evaluation

    1. A(A), (B), (C), (D), (E)
    2. B(E), (A), (B), (D), (C)
    3. C(B), (E), (A), (C), (D)
    4. D(A), (C), (B), (D), (E)

    Answer: (C) (B), (E), (A), (C), (D)

    Explanation

    Sign in to read the full explanation
  9. Arrange the following steps in a proper sequence
    for the process of training a neural network.
    A. Weight initialization
    B. Feed forward
    C. Back Propagation
    D. Loss Calculation
    E. Weight Update

    1. A(A), (B), (D), (C), (E)
    2. B(D), (B), (A), (C), (E)
    3. C(A), (C), (D), (B), (E)
    4. D(E), (C), (B), (D), (A)

    Answer: (A) (A), (B), (D), (C), (E)

    Explanation

    Sign in to read the full explanation
  10. Match List-I with List-II.

    List-IList-II
    (A) Natural language processing(I) A method of training algorithm by rewarding desired behaviour and/or punishing undesired one.
    (B) Reinforcement learning(II) System designed to emulate the decision making abilities of a human expert.
    (C) Support vector machine(III) A branch of AI focused on understanding and generating human language.
    (D) Expert system(IV) A machine learning technique that finds the hyperplane that best separates different classes in a feature space.
    1. A(A)-(I), (B)-(II), (C)-(IV), (D)-(III)
    2. B(A)-(III), (B)-(II), (C)-(I), (D)-(IV)
    3. C(A)-(III), (B)-(I), (C)-(IV), (D)-(II)
    4. D(A)-(II), (B)-(IV), (C)-(III), (D)-(I)

    Answer: (C) (A)-(III), (B)-(I), (C)-(IV), (D)-(II)

    Explanation

    Sign in to read the full explanation
  11. What is the role of Back Propagation
    Algorithm?

    Artificial Neural Networks (ANNs) are computational models inspired by the human brain’s neural networks. They consist of interconnected 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 back propagation, 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.

    1. ATo reduce error
    2. BTo secure network
    3. CTo control speed of data
    4. DTo add different layers

    Answer: (A) To reduce error

    Explanation

    Sign in to read the full explanation
  12. What is the role of weights in an ANN ?

    Artificial Neural Networks (ANNs) are computational models inspired by the human brain’s neural networks. They consist of interconnected 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 back propagation, 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.

    1. ATo store data
    2. BTo adjust and improve network performance
    3. CTo control the speed
    4. DTo secure the network

    Answer: (B) To adjust and improve network performance

    Explanation

    Sign in to read the full explanation
  13. Which of the following is/are the
    application area(s) of ANN ?
    A. Natural Language Processing
    B. Image Processing
    C. Pattern Recognition
    D. Speech Recognition
    Choose the correct answer from the
    options given below :

    Artificial Neural Networks (ANNs) are computational models inspired by the human brain’s neural networks. They consist of interconnected 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 back propagation, 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.

    1. A(A) and (B) Only
    2. B(B) and (C) Only
    3. C(A), (B) and (C) Only
    4. D(A), (B), (C) and (D)

    Answer: (D) (A), (B), (C) and (D)

    Explanation

    Sign in to read the full explanation
  14. Artificial Neural Networks (ANNs) are
    inspired by :

    Artificial Neural Networks (ANNs) are computational models inspired by the human brain’s neural networks. They consist of interconnected 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 back propagation, 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.

    1. AQuantum mechanics
    2. BHuman brain's neural network
    3. CComputer Hardware architecture
    4. DGenetic algorithm

    Answer: (B) Human brain's neural network

    Explanation

    Sign in to read the full explanation
  15. Which of the following layers may be more
    than one in number ?

    Artificial Neural Networks (ANNs) are computational models inspired by the human brain’s neural networks. They consist of interconnected 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 back propagation, 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.

    1. AInput layer
    2. BHidden layer
    3. COutput layer
    4. DPhysical layer

    Answer: (B) Hidden layer

    Explanation

    Sign in to read the full explanation
  16. What is the generic structure of Multi Agent System (MAS) ?

    1. ASingle agent with multiple objectives
    2. BMultiagents with a single objectives
    3. CMultiagents with diverse objectives and communication abilities
    4. DMultiagent with two objectives

    Answer: (C) Multiagents with diverse objectives and communication abilities

    Explanation

    Sign in to read the full explanation
  17. A point of fuzzy set A is a point xeX at which wA(x)=0.5

    1. ACore
    2. BSupport
    3. CCrossover
    4. Da-—cut

    Answer: (C) Crossover

    Explanation

    Sign in to read the full explanation
  18. In a genetic algorithm optimization problem the fitness function is defined as f(x) =x?- 4x +4. Given a population of four individuals with values of x : {1.5, 2.0, 3.0, 4.5} What is the fitness value of the individual that will be selected as the parent for reproduction in one generation ?

    1. A25
    2. B0
    3. C0
    4. D25

    Answer: (D) 25

    Explanation

    Sign in to read the full explanation
  19. In the content of Alpha Beta pruning in game trees which of the following statements are correct regarding cut off procedures ?
    A. Alpha Beta pruning can eliminate subtrees with certainly when the value of a node exceeds both the alpha and beta bonds.
    B. The primarily purpose of Alpha-Beta proning is to save computation time by searching fewer nodes in the same tree.
    C. Alpha Beta pruning guarantees the optimal solution in all cases by exploring the entire game tree.
    D. Alpha and Beta bonds are initialized to negative and positive infinity respectively at the root note. Choose the correct answer from the options given below :

    1. A(A), ©), () Only
    2. B(B), (C), (DB) Only
    3. C(A), (B), (DB) Only
    4. D(©, (B) Only

    Answer: (C) (A), (B), (DB) Only

    Explanation

    Sign in to read the full explanation
  20. Match List-I with List-II.

    Source matching promptSource values
    See question stemSee answer choices
    1. A(A), (B)-(), (C)-C), (D)-(IV)
    2. B(A), (B)-@, (©), (D)-(IV)
    3. C(A)-(1, (B)-@, (C)-(V), (D)-C)
    4. D(A)-(0), (B)-(), (C)-(IV), (D)-

    Answer: (D) (A)-(0), (B)-(), (C)-(IV), (D)-

    Explanation

    Sign in to read the full explanation
  21. Which of the following constrains when formulating the LPP ?

    Food X contains 6 units of Vitamin D per gram and 7 units of Vitamin E per gram and costs Rs. 12 per gram. Food Y contains 8 units of Vitamin D per gram and 12 units of Vitamin E per gram and costs Rs. 20 per gram. The daily minimum requirements of vitamin D and vitamin E are 100 units and 120 units respectively. Let x and y be the quantities in grams of Food X and Food Y.

    1. A6x+7y<100, 8x+12y<120, x,y 20
    2. B6x+8y<100, 7x+12y<120, x,y20
    3. C6x+7y 2100, 8x+12y>120, x,y>0
    4. D6x+8y 2100, 7x+12y 2120, x,y20

    Answer: (D) 6x+8y 2100, 7x+12y 2120, x,y20

    Explanation

    Sign in to read the full explanation
  22. Which of the following are quantities (in grams) of food X and Y respectively when the cost of food is minimum : 1

    Food X contains 6 units of Vitamin D per gram and 7 units of Vitamin E per gram and costs Rs. 12 per gram. Food Y contains 8 units of Vitamin D per gram and 12 units of Vitamin E per gram and costs Rs. 20 per gram. The daily minimum requirements of vitamin D and vitamin E are 100 units and 120 units respectively. Let x and y be the quantities in grams of Food X and Food Y.

    1. AOand 125 5
    2. B15 and 7 P 120 49
    3. C7 an
    4. D0 and 10

    Answer: (B) 15 and 7 P 120 49

    Explanation

    Sign in to read the full explanation
  23. The dual of the formulated LPP is :

    Food X contains 6 units of Vitamin D per gram and 7 units of Vitamin E per gram and costs Rs. 12 per gram. Food Y contains 8 units of Vitamin D per gram and 12 units of Vitamin E per gram and costs Rs. 20 per gram. The daily minimum requirements of vitamin D and vitamin E are 100 units and 120 units respectively. Let x and y be the quantities in grams of Food X and Food Y.

    1. AMax Z = 100u + 120v; 6u + 7v ≤ 12; 8u + 12v ≤ 20; u, v ≥ 0
    2. BMax Z = 12u + 20v; 6u + 7v ≤ 100; 8u + 12v ≤ 120; u, v ≥ 0
    3. CMax Z = 100u + 120v; 6u + 7u ≤ 12; 8u + 7v ≤ 20; u, v unrestricted
    4. DMax Z = 100u + 120u; 6u + 7v ≥ 12; 8u + 12v ≥ 20; u, v ≥ 0

    Answer: (A) Max Z = 100u + 120v; 6u + 7v ≤ 12; 8u + 12v ≤ 20; u, v ≥ 0

    Explanation

    Sign in to read the full explanation
  24. Match List-I with List-II.

    Source matching promptSource values
    See question stemSee answer choices
    1. A(A)-C, @)-€V), ()-0), (P)-Ca)
    2. B(A)-CV), (B)-CM), ()-@), (P)-
    3. C(A)-CV), (BN), (C)-(), (P)-(IN)
    4. D(A)-(IID), (B)-(IV), (C)-(), (D)-()

    Answer: (B) (A)-CV), (B)-CM), ()-@), (P)-

    Explanation

    Sign in to read the full explanation
  25. The process of removing details from a given state representation is called

    1. AExtraction
    2. BMining
    3. CSelection
    4. DAbstraction

    Answer: (D) Abstraction

    Explanation

    Sign in to read the full explanation
  26. Practise Artificial Intelligence in a timed set
  27. Which statement is NOT true of problem solving in artificial intelligence?

    1. AIt implements heuristic search techniques.
    2. BSolution steps are not explicit.
    3. CKnowledge is imprecise.
    4. DIt works on or implements a repetition mechanism.

    Answer: (D) It works on or implements a repetition mechanism.

    Explanation

    Sign in to read the full explanation
  28. What kind of clauses occur in conjunctive normal form?

    1. ADisjunctions of literals
    2. BDisjunctions of variables
    3. CConjunctions of literals
    4. DConjunctions of variables

    Answer: (A) Disjunctions of literals

    Explanation

    Sign in to read the full explanation
  29. Which of the following statements are true?
    A. Asentence a entails another sentence f if 8 is true in few worlds where @ is true.
    B. Forward chaining and backward chaining are very natural reasoning algorithms for
    knowledge bases in Horn form.
    C. Sound inference algorithms derive all sentences that are entailed.
    D. Propositional logic does not scale to environments of unbounded size.

    1. AOCR review required
    2. BOCR review required
    3. C(C) and (D) only (4) (B) and (D) only
    4. DOCR review required

    Answer: (D) OCR review required

    Explanation

    Sign in to read the full explanation
  30. Which of the following statements are true?
    A. Minimax search is breadth-first; it processes all the nodes at a level before moving to
    a node in next level.
    B. The effectiveness of the alpha-beta pruning is highly dependent on the order in which
    the states are examined.
    C. The alpha-beta search algorithm computes the same optimal moves as minimax
    algorithm.
    D. Optimal play in games of imperfact information does not require reasoning about the
    current and future belief states of each player.

    1. AOCR review required
    2. BOCR review required
    3. C(B) and (C) only (4) (C) and (D) only
    4. DOCR review required

    Answer: (C) (B) and (C) only (4) (C) and (D) only

    Explanation

    Sign in to read the full explanation
  31. Match List I with List II
    List I
    A. Branch-and-bound
    B. (©)
    D. Steepest-accent hill climbing

    Constraint satisfaction

    Means-end-analysis

    @)

    aD

    (ly
    Statement IV: List IT

    Keeps track of all partial paths which
    can be candidate for further
    exploration.

    Detects difference between current
    state and goal state

    Discovers problem state(s) that satisfy
    a set of constraints.

    Considers all moves from current state
    and selects best move

    List IList II
    Items are listed in the question stem.Match each item to its stated description or complexity.
    1. AOCR review required
    2. BOCR review required
    3. COCR review required
    4. DOCR review required

    Answer: (A) OCR review required

    Explanation

    Sign in to read the full explanation
  32. Match List I with List II
    List I List II
    A. Greedy Best-First Search () Space complexity is O(d) where
    d=depth of the deepest optimal
    solution
    B. A* (I) Incomplete even if the search space is
    finite.
    C. Recursive Best-First Search (I) Optimal if optimal solution is
    reachable; otherwise, returns the best
    reachable optimal solution.
    D. SMA* (IV) Computation and space complexity is
    too high.

    List IList II
    Items are listed in the question stem.Match each item to its stated description or complexity.
    1. AOCR review required
    2. BOCR review required
    3. CA-III, B-II, C-IV, D-I (4) A-III. B-IV. C-II, D-I
    4. DOCR review required

    Answer: (A) OCR review required

    Explanation

    Sign in to read the full explanation
  33. Given below are two statements:
    If two variables V, and V; are used for clustering, then consider the following statements for
    k means clustering with k = 3:-
    Statement I: If V, and V2 have correlation of 1 the cluster centroid will be in straight line.
    Statement II: IfV, and V2 have correlation of 0 the cluster centroid will be in straight line.
    In the light of the above statements, choose the correct answer from the options given below
    ce) Both Statement I and Statement II are true

    1. AOCR review required
    2. BBoth Statement I and Statement II are false
    3. CStatement I is correct but Statement IT is false
    4. DStatement I is incorrect but Statement IT is true.

    Answer: (C) Statement I is correct but Statement IT is false

    Explanation

    Sign in to read the full explanation
  34. Given below are two statements:

    Statement I: A genetic algorithm is a stochastic hill-climbing search in which a large

    population of states is maintained.

    Statement II: In nondeterministic environments. agents can apply AND-OR search to

    generate contingent plans that reach the goal regardless of which outcomes
    occur during execution.

    In the light of the above statements, choose the Correct answer from the options given below

    qa)

    1. AOCR review required
    2. BOCR review required
    3. COCR review required
    4. DOCR review required

    Answer: (A) OCR review required

    Explanation

    Sign in to read the full explanation

Frequently asked questions

How many Artificial Intelligence questions have been asked in UGC NET Computer Science?

33 Artificial Intelligence questions appear in the UGC NET Computer Science papers held between 2020–2025, and all of them are on this page with their answer key.

Are the answers on this page free?

Yes. Every question, its options, and the correct answer are free to read with no account. Signing in additionally unlocks the detailed explanation under each question.

Is Artificial Intelligence an important topic for UGC NET Computer Science?

Artificial Intelligence appears in every recent UGC NET Computer Science paper, across all 4 sittings covered here. Its share of the paper makes it worth revising thoroughly rather than sampling.

How should I practise Artificial Intelligence after reading these questions?

Attempt the Artificial Intelligence topic-wise sets, which put the same questions into a timed interface with instant scoring and weak-area analysis afterwards.

More Computer Science PYQs by topic

More Computer Science practice

Ready for a full paper?

Attempt Paper 1 + Paper 2 (Computer Science) together in a single timed session.

Full Mock Tests →