wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

TYCS AI Internal Exam

Total questions: 51

Worksheet time: 26mins

Name
Class
Date
1.

Which of the following best defines Artificial Intelligence?

a)

Making computers faster

b)

Making computers able to solve problems intelligently

c)

Programming computers with random instructions

d)

Making hardware more powerful

2.

Who is considered the "Father of AI"?

a)

Alan Turing

b)

John McCarthy

c)

Marvin Minsky

d)

Geoffrey Hinton

3.

The term "Artificial Intelligence" was first coined in which year?

a)

1943

b)

1950

c)

1956

d)

1965

4.

Which of the following is NOT an application of AI?

a)

Speech recognition

b)

Machine translation

c)

Arithmetic multiplication

d)

Expert systems

5.

Which test was proposed by Alan Turing to check machine intelligence?

a)

Lovelace Test

b)

Turing Test

c)

CAPTCHA

d)

IQ Test

6.

The branch of AI concerned with reasoning using facts and rules is:

a)

Machine learning

b)

Knowledge representation

c)

Robotics

d)

Natural language processing

7.

Which is an example of narrow AI?

a)

Human-level AI

b)

AlphaGo

c)

Self-awareness in machines

d)

Consciousness simulation

8.

Which of the following is NOT a goal of AI?

a)

Learn

b)

Adapt

c)

Reason

d)

Random guessing

9.

Which AI approach tries to mimic human brain processes?

a)

Symbolic AI

b)

Connectionist AI

c)

Evolutionary computation

d)

Genetic programming

10.

The "state of the art" in AI refers to:

a)

Artistic uses of AI

b)

The most advanced technology available today

c)

Theoretical AI from the 1950s

d)

AI only in robotics

11.

Which is the correct definition of an intelligent agent?

a)

A machine that can move

b)

Anything that perceives its environment and acts upon it

c)

A software program that only stores data

d)

Any human with a computer

12.

The "percept" in an agent is:

a)

The agent's action

b)

The agent's perception of the environment at a given time

c)

The agent's decision-making algorithm

d)

The environment model

13.

Which type of agent uses condition-action rules?

a)

Reflex agent

b)

Goal-based agent

c)

Utility-based agent

d)

Learning agent

14.

Which of these is an example of a partially observable environment?

a)

Chess

b)

Poker

c)

Sudoku

d)

Crossword puzzles

15.

In AI, PEAS stands for:

a)

Performance, Environment, Actuators, Sensors

b)

Performance, Execution, Actions, Strategy

c)

Program, Environment, Actions, Sensors

d)

Perception, Environment, Actuators, System

16.

Which environment property describes a situation where the next state depends only on the current state and action?

a)

Deterministic

b)

Episodic

c)

Stochastic

d)

Static

17.

Which agent architecture allows an agent to improve its performance over time?

a)

Reflex

b)

Learning agent

c)

Utility-based

d)

Rule-based

18.

In a goal-based agent, decisions are made based on:

a)

Predefined rules

b)

Current percept

c)

Desired goal state

d)

Random choice

19.

Which type of environment is fixed and does not change while the agent is thinking?

a)

Dynamic

b)

Static

c)

Continuous

d)

Stochastic

20.

Which of the following is NOT a component of a problem definition in AI?

a)

Initial state

b)

Actions

c)

Goal test

d)

Hardware specification

21.

A problem-solving agent searches for:

a)

The environment's rules

b)

A sequence of actions to reach the goal

c)

A faster computer processor

d)

The shortest program code

22.

The set of all possible states reachable from the initial state is called:

a)

Search space

b)

State diagram

c)

Path cost

d)

Goal set

23.

In AI problem-solving, a solution is:

a)

Any random action sequence

b)

A path from the initial state to a goal state

c)

The largest possible search tree

d)

The number of visited nodes

24.

Which is a characteristic of well-defined problems?

a)

Ambiguous goal state

b)

Clear initial state, goal state, and actions

c)

No performance measure

d)

Randomness in state transitions

25.

The water jug problem is an example of:

a)

Continuous problem

b)

Search problem

c)

Optimization problem

d)

Learning problem

26.

In a search tree, the branching factor is:

a)

The maximum number of children per node

b)

The tree depth

c)

The cost of a path

d)

The number of leaves

27.

Which of these is NOT an example of a search problem?

a)

Route finding

b)

Crossword puzzle

c)

Speech synthesis

d)

8-puzzle

28.

Which data structure is typically used in BFS?

a)

Stack

b)

Queue

c)

Priority queue

d)

Tree

29.

The term "explored set" in search algorithms means:

a)

The set of nodes currently being expanded

b)

The set of nodes already visited

c)

The set of goal states

d)

The set of possible actions

30.

What is a solution in problem solving?

a)

A question

b)

A puzzle

c)

A series of steps to reach the goal

d)

A robot

31.

Which of the following is not a component of a problem formulation in AI?

a)

Initial state

b)

Goal test

c)

Search algorithm

d)

Actions

32.

What is the main difference between BFS and DFS?

a)

BFS uses heuristics, DFS doesn't

b)

BFS uses less memory

c)

DFS uses less memory and explores deeper first

d)

DFS is always better

33.

Which of the following search strategies explores both directions from start and goal simultaneously?

a)

Breadth-First Search

b)

Depth-First Search

c)

Bidirectional Search

d)

Iterative Deepening Search

34.

Iterative Deepening Search (IDS) combines the benefits of:

a)

DFS and UCS

b)

BFS and DFS

c)

BFS and A*

d)

DFS and Greedy Search

35.

Which search strategy avoids revisiting the same state in the search tree?

a)

DFS without memory

b)

BFS with a closed list

c)

UCS without a visited list

d)

DFS with loops

36.

In machine learning, supervised learning uses:

a)

Only input data

b)

Input-output pairs

c)

Only output data

d)

No data at all

37.

Which of these is an example of classification?

a)

Predicting house prices

b)

Predicting weather as sunny or rainy

c)

Finding shortest path in a graph

d)

Maximizing profit

38.

Which of the following is an informed search algorithm?

a)

Depth-First Search

b)

Breadth-First Search

c)

A* Search

d)

Uniform-Cost Search

39.

A heuristic function in A search estimates:

a)

The exact cost to the goal

b)

The cost from the start node

c)

The remaining cost to the goal

d)

The total memory used

40.

The evaluation function in A search is represented as:

a)

f(n) = h(n)

b)

f(n) = g(n) + h(n)

c)

f(n) = g(n) × h(n)

d)

f(n) = g(n) − h(n)

41.

What does a heuristic do in search algorithms?

a)

Ignores the goal

b)

Estimates distance to the goal

c)

Randomly selects nodes

d)

Only finds shortest paths

42.

What is the goal of heuristic search?

a)

Find a path quickly

b)

Explore all nodes

c)

Use no memory

d)

Avoid heuristics

43.

Which search method uses heuristics to find the best path faster?

a)

Depth-First Search

b)

Breadth-First Search

c)

A* Search

d)

Uniform-Cost Search

44.

Which algorithm is based on the idea of "nearest neighbors"?

a)

KNN

b)

Decision tree

c)

Naive Bayes

d)

SVM

45.

Overfitting occurs when:

a)

Model fits the training data too well but fails on new data

b)

Model performs well on test data

c)

Model under-learns the training data

d)

Model generalizes perfectly

46.

What is the full form of "AI"?

a)

Artificially Intelligent

b)

Artificial Intelligence

c)

Artificially Intelligence

d)

Advanced Intelligence

47.

Which of the following is the branch of Artificial Intelligence?

a)

Machine Learning

b)

Cyber forensics

c)

Full-Stack Developer

d)

Network Design

48.

Which of the following is not a type of Artificial Intelligence agent?

a)

Learning AI agent

b)

Goal-based AI agent

c)

Simple reflex AI agent

d)

Unity-based AI agent

49.

Which depends on the percepts and actions available to the agent?

a)

Agent

b)

Sensor

c)

Design problem

d)

None of the mentioned

50.

In AI, PEAS stands for:

a)

Performance, Environment, Actuators, Sensors

b)

Performance, Execution, Actions, Strategy

c)

Program, Environment, Actions, Sensors

d)

Perception, Environment, Actuators, System

51.

Which of the following is a Search Algorithm?

a)

BFS

b)

DFS

c)

A* Algorithm

d)

All of the Above