2022 question paper

Artificial intelligence

22 questions

  1. Q1a. In LISP, the function returns the list that result after the first element is removed (the rest of the list), is (i) car (ii) last (iii) cons (iv) cdr20222m

    Module 4: Advanced AI Applications

    In LISP, the function returns the list that result after the first element is removed (the rest of the list), is

    (i) car
    (ii) last
    (iii) cons
    (iv) cdr

    View this question on its own page →
  2. Q1b. What is artificial intelligence? (i) Putting your intelligence into computer (ii) Programming with your own intelligence (iii) Making a machine intelligent (iv) Playing a game20222m

    Module 1: Introduction and Search Techniques

    What is artificial intelligence?

    (i) Putting your intelligence into computer
    (ii) Programming with your own intelligence
    (iii) Making a machine intelligent
    (iv) Playing a game

    View this question on its own page →
  3. Q1c. Which is the best way to go for game playing problem? (i) Linear approach (ii) Heuristic approach (some knowledge is stored) (iii) Random approach (iv) An optimal approach20222m

    Module 1: Introduction and Search Techniques

    Which is the best way to go for game playing problem?

    (i) Linear approach
    (ii) Heuristic approach (some knowledge is stored)
    (iii) Random approach
    (iv) An optimal approach

    View this question on its own page →
  4. Q1d. Face Recognition system is based on which type of approach? (i) Weak AI approach (ii) Applied AI approach (iii) Cognitive AI approach (iv) Strong AI approach20222m

    Module 4: Advanced AI Applications

    Face Recognition system is based on which type of approach?

    (i) Weak AI approach
    (ii) Applied AI approach
    (iii) Cognitive AI approach
    (iv) Strong AI approach

    View this question on its own page →
  5. Q1e. Which is not the commonly used programming language for AI? (i) Prolog (ii) Java (iii) LISP (iv) Perl20222m

    Module 4: Advanced AI Applications

    Which is not the commonly used programming language for AI?

    (i) Prolog
    (ii) Java
    (iii) LISP
    (iv) Perl

    View this question on its own page →
  6. Q1g. Inference algorithm is completed only if (i) it can derive any sentence (ii) it can derive any sentence that is an entailed version (iii) it is truth preserving (iv) it can derive any sentence that is an entailed version and it is truth preserving20222m

    Module 2: Knowledge Representation and Reasoning

    Inference algorithm is completed only if

    (i) it can derive any sentence
    (ii) it can derive any sentence that is an entailed version
    (iii) it is truth preserving
    (iv) it can derive any sentence that is an entailed version and it is truth preserving

    View this question on its own page →
  7. Q1h. Which search strategy is also called as blind search? (i) Uniformed search (ii) Informed search (iii) Simple reflex search (iv) All of the mentioned20222m

    Module 1: Introduction and Search Techniques

    Which search strategy is also called as blind search?

    (i) Uniformed search
    (ii) Informed search
    (iii) Simple reflex search
    (iv) All of the mentioned

    View this question on its own page →
  8. Q1i. Which is used for utility functions in game playing algorithm? (i) Linear polynomial (ii) Weighted polynomial (iii) Polynomial (iv) Linear weighted polynomial20222m

    Module 1: Introduction and Search Techniques

    Which is used for utility functions in game playing algorithm?

    (i) Linear polynomial
    (ii) Weighted polynomial
    (iii) Polynomial
    (iv) Linear weighted polynomial

    View this question on its own page →
  9. Q1j. Graph used to represent semantic network is (i) undirected graph (ii) directed graph (iii) directed acyclic graph (DAG) (iv) directed complete graph20222m

    Module 2: Knowledge Representation and Reasoning

    Graph used to represent semantic network is

    (i) undirected graph
    (ii) directed graph
    (iii) directed acyclic graph (DAG)
    (iv) directed complete graph

    View this question on its own page →
  10. Q2a. Define Artificial Intelligence (AI). Discuss the applications area of AI.20227m

    Module 1: Introduction and Search Techniques

    Define Artificial Intelligence (AI). Discuss the applications area of AI.

    View this question on its own page →
  11. Q4a. What do you mean by learning? Explain briefly the learning methods. Discuss the advantages and disadvantages of rule-based system.20227m

    Module 3: Machine Learning Fundamentals

    What do you mean by learning? Explain briefly the learning methods. Discuss the advantages and disadvantages of rule-based system.

    View this question on its own page →
  12. Q4b. Explain the human preferences in encoding uncertainty during parsing.20227m

    Module 4: Advanced AI Applications

    Explain the human preferences in encoding uncertainty during parsing.

    View this question on its own page →
  13. Q5a. Explain hill climbing algorithm. Explain plateau, ridge, and local maxima.20227m

    Module 1: Introduction and Search Techniques

    Explain hill climbing algorithm. Explain plateau, ridge, and local maxima.

    View this question on its own page →
  14. Q5b. Explain knowledge acquisition techniques.20227m

    Module 4: Advanced AI Applications

    Explain knowledge acquisition techniques.

    View this question on its own page →
  15. Q6a. What is fuzzy set? What is the difference between fuzzy set and crisp set? Explain different fuzzy set operations using examples.20227m

    Module 2: Knowledge Representation and Reasoning

    What is fuzzy set? What is the difference between fuzzy set and crisp set? Explain different fuzzy set operations using examples.

    View this question on its own page →
  16. Q6b. Write a Prolog program that verified whether an input list is a palindrome. Hint: Goal : Palindrome ([r, a, c, e, c, a, r]) Output : Yes Goal : Palindrome ([a, b, c]) Output : No20227m

    Module 2: Knowledge Representation and Reasoning

    Write a Prolog program that verified whether an input list is a palindrome.

    Hint:
    Goal : Palindrome ([r, a, c, e, c, a, r])
    Output : Yes
    Goal : Palindrome ([a, b, c])
    Output : No

    View this question on its own page →
  17. Q7a. Consider the Water Jug problem as stated here. "You are given two jugs, a 4-gallon one and a 3-gallon one. Neither has any measuring marker on it. There is a pump that can be used to fill the jugs with water. How can you get exactly 2 gallons of water into the 4-gallon jug?" Represent this as a problem in State Space Search and state its Production Rules. Show at least one solution to this problem.20227m

    Module 1: Introduction and Search Techniques

    Consider the Water Jug problem as stated here. "You are given two jugs, a 4-gallon one and a 3-gallon one. Neither has any measuring marker on it. There is a pump that can be used to fill the jugs with water. How can you get exactly 2 gallons of water into the 4-gallon jug?" Represent this as a problem in State Space Search and state its Production Rules. Show at least one solution to this problem.

    View this question on its own page →
  18. Q7b. Explain the basic component of an expert system.20227m

    Module 4: Advanced AI Applications

    Explain the basic component of an expert system.

    View this question on its own page →
  19. Q8a. Why is Natural Language Processing (NLP) used? Is NLP difficult to learn? Explain.20227m

    Module 4: Advanced AI Applications

    Why is Natural Language Processing (NLP) used? Is NLP difficult to learn? Explain.

    View this question on its own page →
  20. Q8b. Write a function in LISP that computes prime number between 1 and 25 (inclusive).20227m

    Module 4: Advanced AI Applications

    Write a function in LISP that computes prime number between 1 and 25 (inclusive).

    View this question on its own page →
  21. Q9a. Describe logistic regression with suitable examples.20227m

    Module 3: Machine Learning Fundamentals

    Describe logistic regression with suitable examples.

    View this question on its own page →
  22. Q9b. Define prior probability and conditional probability. State Bayes's theorem. How is it useful for decision making under uncertainty.20227m

    Module 2: Knowledge Representation and Reasoning

    Define prior probability and conditional probability. State Bayes's theorem. How is it useful for decision making under uncertainty.

    View this question on its own page →