Bachelors Level/Second Year/Fourth Semester/Science csit/fourth semester/artificial intelligence/syllabus wise questions

B.Sc Computer Science and Information Technology

Institute of Science and Technology, TU

Artificial Intelligence (CSC266)

Year Asked: 2081, syllabus wise question

Applications of AI
1.
What is robotics? How machine vision is used in robotics? [5]
Introduction
1.
What is intelligence? Describe the foundation of AI. [5]
2.
Justify which type of environments resembles following agents. a. Mission Game with fixed 6 states having two players. b. Tesla Driverless Robovan where road conditions are changing. c. Game Result Predicting Agent where current prediction state is independent of previous state. [5]
Knowledge Representation
1.
What is Skolem constant? How is Skolemization done during resolution? Represent the following statements into FOPL. - All movies are not hit. - Sarangi is a movie. - All movies which have good script are hit. - Sarangi has a good script but Sarangi is sentimental. - There is a movie which is comedy. [10]
2.
How can you represent knowledge using scripts? Create a knowlege base using script based on your own assumption. [5]
3.
Define fuzzy logic. Construct a fuzzy rule base expert system with your own considerations of fuzzy set. [5]
Machine Learning
1.
How can you relate synapse, dendrite, and axon in biological neural networks with the elements of artificial neural networks? Create a multi-layer ANN with input layer, hidden layer, and output layer. Assume necessary inputs and weights to the ANN and illustrate a single iteration of backpropagation algorithm to train the ANN. [10]
2.
What is reinforcement learning? Configure an ANN neuron to simulate OR gate. [5]
3.
What is reinforcement learning? Configure an ANN neuron to simulate OR gate. [5]
Problem Solving by Searching
1.
How is informed search different from uninformed search? Create a state space with appropriate heuristics, now illustrate how hill climbing search expands nodes to reach a goal. Modify the state space heuristics and demonstrate when the hill climbing will not be complete. [10]
2.
How uniform cost search is used to search goal in the state apace? Illustrate with example. [5]
3.
How is minmax algorithm used in game search? Consider state space is defined by a collection of pairs like (A, B) representing paths between states A and B. Construct state space for following and use a minmax algorithm. (A, B), (A, C), (B, D), (D, E), (C, F), (C, G), (D, H), (D, I), (E, J), (F, K), (F, L), (G, M), (G, N). The utilities for states H, I, J, K, L, M, N are 1, 3, 2, 6, 3, 4, 1 respectively. [5]