AD3311-SET-1 question set
AD3311-SET-1 question set
(Regulations 2021)
Consider you have a 3X3 board, where all numbers are in range 0 to 8. The board
1. has no repeating numbers and an empty space. Implement a program to find the
minimum number of steps required to arrange the board in sequence using 8
puzzle problem.
Write a python program to solve tic – tac – toe problem using MINI-MAX
4.
algorithm. Find the next optical move for a player.
Import necessary libraries, load required training and test data, and write a
7.
program for text classification using Naive Bayes model.
Consider a map is given, color the map with different shades, so that no color
13
is repeated. Implement Constraint Satisfaction Problem for map coloring
.
problem.
Define a game. Write the MINI-MAX algorithm to determine the optimal strategy
15
for MAX to decide the best first move.
.
16 Develop Naïve Bayes Model by using iris training dataset with gaussian Naïve
. bayes classifier.
Develop a program to solve 8 puzzle problem, where all numbers are in range 0
20 to 8. 0 and 4 are swapped in the 3X3 board, now solve the number of steps
. required to arrange the sequence in order.