Difficulty: Easy
Correct Answer: ES
Explanation:
Introduction / Context:
Rule-based problem solving is a hallmark of early knowledge-based systems used in domains such as medical diagnosis, troubleshooting, and configuration. The canonical implementation is the expert system, which encodes domain knowledge in rules and applies them to a fact base via an inference engine.
Given Data / Assumptions:
Concept / Approach:
An Expert System (ES) comprises a knowledge base (rules), a working memory (facts), and an inference engine (forward or backward chaining). It applies rules to current information to derive new facts, explanations, or recommendations.
Step-by-Step Solution:
Verification / Alternative check:
Classic systems like MYCIN (medical diagnosis) and XCON (VAX configuration) demonstrate rule-based expert system operation.
Why Other Options Are Wrong:
Common Pitfalls:
Using ‘‘AI’’ when a specific architecture (expert system) is intended. ES is the best match to rule-application on present facts.
Final Answer:
ES
Discussion & Comments