2022 question paper
Artificial intelligence
22 questions
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
View this question on its own page →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) cdrQ1b. 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
View this question on its own page →What is artificial intelligence?
(i) Putting your intelligence into computer
(ii) Programming with your own intelligence
(iii) Making a machine intelligent
(iv) Playing a gameQ1c. 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
View this question on its own page →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 approachQ1d. 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
View this question on its own page →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 approachQ1e. Which is not the commonly used programming language for AI? (i) Prolog (ii) Java (iii) LISP (iv) Perl20222m
Module 4: Advanced AI Applications
View this question on its own page →Which is not the commonly used programming language for AI?
(i) Prolog
(ii) Java
(iii) LISP
(iv) PerlQ1g. 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
View this question on its own page →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 preservingQ1h. 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
View this question on its own page →Which search strategy is also called as blind search?
(i) Uniformed search
(ii) Informed search
(iii) Simple reflex search
(iv) All of the mentionedQ1i. 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
View this question on its own page →Which is used for utility functions in game playing algorithm?
(i) Linear polynomial
(ii) Weighted polynomial
(iii) Polynomial
(iv) Linear weighted polynomialQ1j. 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
View this question on its own page →Graph used to represent semantic network is
(i) undirected graph
(ii) directed graph
(iii) directed acyclic graph (DAG)
(iv) directed complete graphQ2a. Define Artificial Intelligence (AI). Discuss the applications area of AI.20227m
Module 1: Introduction and Search Techniques
View this question on its own page →Define Artificial Intelligence (AI). Discuss the applications area of AI.
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
View this question on its own page →What do you mean by learning? Explain briefly the learning methods. Discuss the advantages and disadvantages of rule-based system.
Q4b. Explain the human preferences in encoding uncertainty during parsing.20227m
Module 4: Advanced AI Applications
View this question on its own page →Explain the human preferences in encoding uncertainty during parsing.
Q5a. Explain hill climbing algorithm. Explain plateau, ridge, and local maxima.20227m
Module 1: Introduction and Search Techniques
View this question on its own page →Explain hill climbing algorithm. Explain plateau, ridge, and local maxima.
Q5b. Explain knowledge acquisition techniques.20227m
Module 4: Advanced AI Applications
View this question on its own page →Explain knowledge acquisition techniques.
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
View this question on its own page →What is fuzzy set? What is the difference between fuzzy set and crisp set? Explain different fuzzy set operations using examples.
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
View this question on its own page →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 : NoQ7a. 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
View this question on its own page →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.
Q7b. Explain the basic component of an expert system.20227m
Module 4: Advanced AI Applications
View this question on its own page →Explain the basic component of an expert system.
Q8a. Why is Natural Language Processing (NLP) used? Is NLP difficult to learn? Explain.20227m
Module 4: Advanced AI Applications
View this question on its own page →Why is Natural Language Processing (NLP) used? Is NLP difficult to learn? Explain.
Q8b. Write a function in LISP that computes prime number between 1 and 25 (inclusive).20227m
Module 4: Advanced AI Applications
View this question on its own page →Write a function in LISP that computes prime number between 1 and 25 (inclusive).
Q9a. Describe logistic regression with suitable examples.20227m
Module 3: Machine Learning Fundamentals
View this question on its own page →Describe logistic regression with suitable examples.
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
View this question on its own page →Define prior probability and conditional probability. State Bayes's theorem. How is it useful for decision making under uncertainty.