CS/IT MCQ Collections

Top 20 MCQ Questions on Problem-Solving in AI

Pinterest LinkedIn Tumblr

This set of MCQ questions on problem-solving in AI includes the collections of multiple-choice questions on problem-solving techniques in Artificial Intelligence. It includes MCQ questions on the introduction of problem-solving in AI, defining the problem as a state-space search, production system, control strategies, breadth-first search, depth-first search, and different heuristic search techniques.

Read Also: Solved MCQ on Artificial Intelligence (AI) Set-1

1. State whether the following statements about defining the problem are True or False.
i) A problem will define a state space that contains all the possible configurations of relevant objects.
ii) A problem will specify a set of rules that describe the actions available.
A. i-True, ii-False
B. i-False, ii-True
C. i-True, ii-True
D. i- False, ii-False

2. … provides the frameworks into which more direct methods for solving sub-parts of a problem, can be embedded.
A. Search
B. Problem
C. State
D. State Space

3. A … is a representation of problem elements at a given moment.
A. Search
B. Problem
C. State
D. State Space

4. State whether the following statements about the state space are True.
i) A state-space forms a graph in which the nodes are states and the arch between nodes are actions.
ii) In state space, a path is a sequence of states connected by a sequence of actions.
A. i-only
B. ii-only
C. Both i and ii
D. None of the above

5. A production system consists of
i) A set of rules.
ii) One or more databases.
iii) A Control Strategy
A. i and ii only
B. ii and iii only
C. i and iii only
D. All i, ii and iii

6. … specifies the order in which the rules will be compared to the database.
A. A set of rules
B. A control strategy
C. One or more knowledge
D. A rule applier

7. … is the computational system that implements the control strategy and applies the rules.
A. A set of rules
B. A control strategy
C. One or more knowledge
D. A rule applier

8. Which of the following are the benefits of the production system?
i) Production systems provide an excellent tool for structuring AI programs.
ii) The individual rules can be added, removed, or modified independently.
iii) The production rules are expressed in a natural form.
A. i and ii only
B. ii and iii only
C. i and iii only
D. All i, ii and iii

9. In… the application of a rule never prevents the later application of another rule.
A. monolithic production system
B. commutative production system
C. fully commutative production system
D. bitonic production system

10. … is a production system that is both monotonic and partially commutative.
A. monolithic production system
B. commutative production system
C. fully commutative production system
D. bitonic production system

11. … help us to decide which rule to apply next during the process of searching for a solution to a problem.
A. Control strategies
B. Production system
C. Problem
D. State space

12. State whether the following statements about the uninformed search control strategy are True or False.
i) It does not have additional information about states beyond problem definition.
ii) In an uninformed search control strategy, the total search space is looked for a solution.
iii) Best first search and problem decomposition are examples of uninformed search control strategies.
A. i-True, ii-False, iii-True
B. i-False, ii-True, iii-True
C. i-True, ii-True, iii-False
D. i- False, ii-False, iii-False

13. In… the search generates all nodes a particular level before proceeding to the next level to the tree.
A. depth-first search techniques
B. breadth-first search techniques
C. iterative deepening search techniques
D. heuristic search techniques

14. … does not guarantee to find a solution and backtracking is required if the wrong path is selected.
A. depth-first search techniques
B. breadth-first search techniques
C. iterative deepening search techniques
D. heuristic search techniques

15. State whether the following statements in the heuristic search techniques are True or False.
i) It can be used to limit the search process.
ii) Special-purpose heuristics exploit domain-specific knowledge.
A. i-True, ii-False
B. i-False, ii-True
C. i-True, ii-True
D. i- False, ii-False

16. … search algorithm is a very simple algorithm that guarantees to find a solution if done systematically and there exists a solution.
A. Generate-and-Test
B. Simple Hill Climbing
C. Steepest-Ascent Hill Climbing
D. Simulated Annealing

17. … is often used when a good heuristic function is available for evaluating states but when no useful knowledge is available.
A. Generate-and-Test
B. Simple Hill Climbing
C. Steepest-Ascent Hill Climbing
D. Simulated Annealing

18. … algorithm considers all the moves from the current state and selects the best one as the next state.
A. Generate-and-Test
B. Simple Hill Climbing
C. Steepest-Ascent Hill Climbing
D. Simulated Annealing

19. Simulated annealing differs from … in that a move is selected at random and then decides whether to accept it.
A. Generate-and-Test
B. Hill Climbing
C. Best First Search
D. Simulated Annealing

20. Which of the following are the drawbacks of hill climbing.
i) Local maximum
ii) Plateau
iii) Ridge
A. i and ii only
B. ii and iii only
C. i and iii only
D. All i, ii and iii

Answers:

  1. C. i-True, ii-True
  2. A. Search
  3. C. State
  4. C. Both i and ii
  5. D. All i, ii, and iii
  6. B. A control strategy
  7. D. A rule applier
  8. D. All i, ii, and iii
  9. A. monolithic production system
  10. B. commutative production system
  11. A. Control strategies
  12. C. i-True, ii-True, iii-False
  13. B. breadth-first search techniques
  14. A. depth-first search techniques
  15. C. i-True, ii-True
  16. A. Generate-and-Test
  17. B. Simple Hill Climbing
  18. C. Steepest-Ascent Hill Climbing
  19. B. Hill Climbing
  20. D. All i, ii and iii

Read Next: 20 MCQ Questions on Knowledge Representation in AI

Author

Shuseel Baral is a web programmer and the founder of InfoTechSite has over 8 years of experience in software development, internet, SEO, blogging and marketing digital products and services is passionate about exceeding your expectations.

Comments are closed.