The document outlines the foundational concepts of Artificial Intelligence (AI), including definitions, approaches, and classifications of agents. It discusses problem-solving components using examples like the 8 puzzle and 8 queen problems, and various search algorithms such as Breadth First Search and Depth First Search. Additionally, it explores the influence of machine learning on AI and the characteristics of rational agents.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
6 views1 page
AI-question Bank
The document outlines the foundational concepts of Artificial Intelligence (AI), including definitions, approaches, and classifications of agents. It discusses problem-solving components using examples like the 8 puzzle and 8 queen problems, and various search algorithms such as Breadth First Search and Depth First Search. Additionally, it explores the influence of machine learning on AI and the characteristics of rational agents.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1
UNIT-1
1. Define Artificial Intelligence. Explain the foundation of AI in detail.
2. Explain all four different approaches in AI detail. 3. Differentiate a. Fully observable vs. partially observable b. Single agent vs. multi agent c. Deterministic vs. stochastic d. Static vs. dynamic 4. Give PEAS specification for: a. Automated Taxi driver b. Medical Diagnosis systems 5. Explain how the "state of the art" in AI today has been influenced by advancements in machine learning and deep learning. 6. Define Agent. Explain how an agent interact with environments through sensors and actuators with an example. 7. List the four basic kinds of agent programs. Explain any one. 8. Compare the structures of different types of agents (simple reflex, model-based reflex, goal- based, and utility-based agents) and determine which is best suited for a dynamic environment like stock market prediction. 9. Define rational agent. Explain the concept rationality for an agent.
UNIT-2
1. Explain five components of well-defined problem. Consider an 8 puzzle problem as an example
and explain. 2. Discuss in detail Infrastructure for search algorithms. 3. Write an algorithm for Breadth First Search and explain with an example 4. Explain Depth first search technique in detail. 5. Write an algorithm for Uniform cost search and explain with an example. 6. Explain five components of well-defined problem. Consider an 8 queen problem as an example and explain. 7. Explain five components of well-defined problem. Consider a vacuum world problem as an example and explain. 8. Explain five components of well-defined problem. Consider any real world problem as an example and explain. 9. Write an algorithm for Depth limited search and explain with an example. 10. Write an algorithm for Iterative deepening depth first search and explain with an example. 11. Write an algorithm for Bidirectional search and explain with an example. 12. Distinguish between BFS and Uniform cost search 13. Compare and contrast uninformed search strategies