AI and Graph Theory Questions Answers With Options
AI and Graph Theory Questions Answers With Options
Answers
In determining a goal state, what is an optimal solution?
Options:
a. The best solution
b. The most cost-effective solution
c. The solution with the least steps
d. The best possible solution that achieves the goal state
Answer: d. The best possible solution that achieves the goal state
In Graph search space, the elements of trees are called their ___________
Options:
a. Leaves
b. Nodes
c. Edges
d. Paths
Answer: b. Nodes
In the year __________, IBM Deep Blue beats world chess champion, Gary
Kasparov, and became the first computer to beat a world chess champion.
Options:
a. 2000
b. 1997
c. 1950
d. 2021
Answer: b. 1997
The main goal of AI is to build a machine that can replace human beings in
workplaces
Options:
True
False
Answer: False
The rationale behind the general AI is to make a system which could be
smarter and think like a human by itself.
Options:
True
False
Answer: True
Machine Learning is based on the idea that machines can learn from past
data, identify patterns, and make decisions using algorithms.
Options:
True
False
Answer: True
1. Multiple Parents: In a tree, each node (except the root) should have exactly one parent. In
the given graph, node 3 has incoming edges from both 1 and 2, violating this rule.
2. No Single Root: A tree must have a single root node from which all nodes descend. The
given DAG does not have a clear single root.
3. Cycles Not Allowed: While this graph is acyclic, a tree must also have a hierarchical
structure without multiple paths leading to the same node, which this graph lacks.
Thus, this structure is a DAG but not a tree.
Consider the graph and write the answers to the following questions
accordingly
Options:
(a) How many root nodes?
1 root node: S (since it has no incoming edges).
(c) If the weight in the graph represents distance in kilometers, how many kilometers is the
shortest route to the Goal Node?
The shortest path from S to G is:
S→A→C→G
1 + 1 + 2 = 4 km
(d) How many kilometers is the longest route to the Goal Node?
The longest path from S to G is:
S→A→B→D→G
1 + 3 + 3 + 3 = 10 km