WorksheetsArtificial Intelligence
Total questions: 15
Worksheet time: 8mins
What is Artificial Intelligence?
Artificial Intelligence is a field that aims to make humans more intelligent
Artificial Intelligence is a field that aims to improve the security
Artificial Intelligence is a field that aims to develop intelligent machines
Artificial Intelligence is a field that aims to mine the data
The 1956 Dartmouth workshop is notable for which of the following?
The first public demonstration of the ENIAC computer
The invention of the Lisp programming language
The first official usage of the term "artificial intelligence."
The development of the first expert system, DENDRAL.
In how many categories process of Artificial Intelligence is categorized?
categorized into 3 categories
categorized into 5 categories
processes are categorized based on the input provided
process is not categorized
Which of the following is not a type of Artificial Intelligence agent?
Learning AI agent
Goal-based AI agent
Simple reflex AI agent
Unity-based AI agent
In which type of task environment does the current decision of an agent affect all future decisions, contrasting with environments where decisions are based only on the current situation?
Episodic
Deterministic
Static
Sequential
What are the five essential parts that constitute a well-defined problem in the context of problem-solving agents?
Percept sequence, performance measure, agent function, utility function, and environment
The initial state, a set of actions, a transition model, a set of goal states, and an action cost function
Sensors, actuators, knowledge base, inference engine, and learning element
Problem description, heuristic function, search tree, optimal path, and solution length
What is the primary goal of machine learning within the field of Artificial Intelligence?
To enable machines to learn from data and improve over time
To create machines that can think like humans
To develop software that can perform calculations faster
To design robots that can perform physical tasks
Which of the following best describes a 'reactive agent' in Artificial Intelligence?
An agent that uses past experiences to inform future actions
An agent that responds to current situations without memory of past events
An agent that learns from its mistakes over time
An agent that plans ahead based on future predictions
What is the significance of the Turing Test in the context of Artificial Intelligence?
It measures the speed of a computer's processing power
It evaluates a machine's ability to exhibit intelligent behavior indistinguishable from a human
It determines the efficiency of an AI algorithm
It assesses the learning capabilities of a neural network
What are the four main criteria used to evaluate the performance of a search algorithm?
Completeness, cost optimality, time complexity, and space complexity
Feasibility, scalability, adaptability, and robustness
Accuracy, precision, recall, and F1 score
Efficiency, generality, interpretability, and modularity.
Which uninformed search algorithm is generally preferred when the search state space is larger than can fit in memory and the depth of the solution is not known?
Breadth-first search
Dijkstra's algorithm (Uniform-cost search)
Depth-first search
Iterative deepening search
The A* search algorithm uses an evaluation function defined as f(n) = g(n) + h(n). For A* to be both complete and cost-optimal, the heuristic function h(n) must possess which specific property?
Consistency
Monotonicity
Admissibility
Dominance
For the 8-puzzle and 15-puzzle problems, which heuristic function calculates the sum of the horizontal and vertical distances of the tiles from their goal positions, also known as city-block distance?
The number of misplaced tiles (h1)
The Manhattan distance (h2)
The effective branching factor (b****)
The pattern database heuristic (hDB)
What defines a "zero-sum" game in game theory?
A game where what is good for one player is just as bad for the other.
A game where all players can achieve a win-win outcome
A game played with a fixed number of turns, totaling zero
A game where the sum of all players' scores at the end is zero.
In game-playing algorithms like minimax and alpha-beta search, what is the purpose of an "evaluation function"?
To determine the legal moves from a given state.
To identify if a state is a terminal state.
To estimate the utility of states at a certain search depth when the search is cut off.
To calculate the exact optimal move for any given game state.
