Artificial Intelligence - B.Tech. 5th Semester End Examination, 2022

2022Semester 3Civil-CAEnd Semester
Bihar Engineering University, Patna
B.Tech. 5th Semester End Examination, 2022

Artificial Intelligence

Time: 03 HoursCode: 105501Full Marks: 70

Instructions:

  1. The marks are indicated in the right-hand margin.
  2. There are NINE questions in this paper.
  3. Attempt FIVE questions in all.
  4. Question No. 1 is compulsory.
Q.1 Choose the correct answer of the following (Any seven question only):[14]
  1. In LISP, the function returns the list that result after the first element is removed (the rest of the list), is

    1. car
    2. last
    3. cons
    4. cdr
  2. What is artificial intelligence?

    1. Putting your intelligence into computer
    2. Programming with your own intelligence
    3. Making a machine intelligent
    4. Playing a game
  3. Which is the best way to go for game playing problem?

    1. Linear approach
    2. Heuristic approach (some knowledge is stored)
    3. Random approach
    4. An optimal approach
  4. Face Recognition system is based on which type of approach?

    1. Weak AI approach
    2. Applied AI approach
    3. Cognitive AI approach
    4. Strong AI approach
  5. Which is not the commonly used programming language for AI?

    1. Prolog
    2. Java
    3. LISP
    4. Perl
  6. What are not represented by using propositional logic?

    1. Objects
    2. Relations
    3. Both objects and relations
    4. None of the above
  7. Inference algorithm is completed only if

    1. it can derive any sentence
    2. it can derive any sentence that is an entailed version
    3. it is truth preserving
    4. it can derive any sentence that is an entailed version and it is truth preserving
  8. Which search strategy is also called as blind search?

    1. Uniformed search
    2. Informed search
    3. Simple reflex search
    4. All of the mentioned
  9. Which is used for utility functions in game playing algorithm?

    1. Linear polynomial
    2. Weighted polynomial
    3. Polynomial
    4. Linear weighted polynomial
  10. Graph used to represent semantic network is

    1. undirected graph
    2. directed graph
    3. directed acyclic graph (DAG)
    4. directed complete graph
Q.2 Solve both questions :[14]
  1. Define Artificial Intelligence (AI). Discuss the applications area of AI.

  2. Explain \( AO^* \) algorithm with an example.

Q.3 Solve both questions :[14]
  1. Explain with diagram the organization of a natural language understanding system.

  2. Describe all the levels of language understanding in natural language processing system.

Q.4 Solve both questions :[14]
  1. What do you mean by learning? Explain briefly the learning methods. Discuss the advantages and disadvantages of rule-based system.

  2. Explain the human preferences in encoding uncertainty during parsing.

Q.5 Solve both questions :[14]
  1. Explain hill climbing algorithm. Explain plateau, ridge, and local maxima.

  2. Explain knowledge acquisition techniques.

Q.6 Solve both questions :[14]
  1. What is fuzzy set? What is the difference between fuzzy set and crisp set? Explain different fuzzy set operations using examples.

  2. 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

Q.7 Solve both questions :[14]
  1. 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.

  2. Explain the basic component of an expert system.

Q.8 Solve both questions :[14]
  1. Why is Natural Language Processing (NLP) used? Is NLP difficult to learn? Explain.

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

Q.9 Solve both questions :[14]
  1. Describe logistic regression with suitable examples.

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