NEW
Font size
WorksheetsUnit 2 - AI by Prof. R. Rajkumar
Total questions: 15
Worksheet time: 8mins
Convert to Marcus was a man
man(marcus)
marcus(man)
Marcus was a Roman
roman(marcus)
marcus(roman)
All men are person
Caesar was a ruler
ruler(caesar)
caesar(ruler)
All Romans were either loyal to Caesar or hated him (or both).
The above is true or false according to "Everyone is loyal to someone"
False
True
What is the Conversion of Clausal Form If C-> D
¬C, D
C, ¬D
C, D
C n D
Which of the following is incorrect?
Algorithms can be represented:
a)as pseudo codes
b) as syntax
c) as programs
d) as flowcharts
Which search is equal to minimax search but eliminates the branches that can’t influence the final decision?
a) Depth-first search
b) Breadth-first search
c) Best First Search
c) Alpha-beta pruning
Which value is assigned to alpha and beta in the alpha-beta pruning?
a) Alpha = max
b) Beta = min
c) Beta = max
d) Both Alpha = max & Beta = min
The Data structure used in standard implementation of Breadth First Search is?
a) Stack
b) Queue
c) Linked List
d) Tree
In BFS, how many times a node is visited?
a) Once
b) Twice
c) Equivalent to number of indegree of the node
d) Thrice
_______________ Is an algorithm, a loop that continually moves in the direction of increasing value – that is uphill.
a) Up-Hill Search
b) Hill-Climbing
c) Hill algorithm
d) Reverse-Down-Hill search
Hill climbing sometimes called ____________ because it grabs a good neighbor state without thinking ahead about where to go next.
a) Needy local search
b) Heuristic local search
c) Greedy local search
d) Optimal local search
What are the two main features of Genetic Algorithm?
a) Fitness function & Crossover techniques
b) Crossover techniques & Random mutation
c) Individuals among the population & Random mutation
d) Random mutation & Fitness function
