All Practice Exams

100+ Free WBCHSE HS Artificial Intelligence & Data Science Practice Questions

Prepare for the West Bengal Council of Higher Secondary Education Class 12 Artificial Intelligence and Data Science Exam exam with instant access — no signup required.

✓ No registration✓ No credit card✓ No hidden fees✓ Start practicing immediately
100+ Questions
100% Free

Loading practice questions...

2026 Statistics

Key Facts: WBCHSE HS Artificial Intelligence & Data Science Exam

AIDS

Official WBCHSE subject code

https://wbchse.wb.gov.in/subjects/

30%

Minimum pass in theory and practical/project independently

https://wbchse.wb.gov.in/frequently-asked-questions-examination

INR 215

Class XII semester enrolment total (INR 190 to Council)

WBCHSE Memo L/PR/305/2025

bn+en

Non-language elective paper media (Bengali and English)

WBCHSE examination regulations

Sem I–IV

Higher Secondary semester system across Classes XI–XII

https://wbchse.wb.gov.in/annual-working-plan

Comprehensive state board exam in West Bengal covering AI and Data Science fundamentals for class 11 and 12. English-language MCQ study adaptation for WBCHSE HS—not an official board paper.

Sample WBCHSE HS Artificial Intelligence & Data Science Practice Questions

Try these sample questions to test your WBCHSE HS Artificial Intelligence & Data Science exam readiness. Each question includes a detailed explanation. Start the interactive quiz above for the full 100+ question experience with AI tutoring.

1Which subfield of Artificial Intelligence is primarily concerned with enabling computers to learn patterns directly from data without being explicitly programmed?
A.Machine Learning
B.Rule-based Systems
C.Symbolic Reasoning
D.Expert Systems
Explanation: Machine Learning is the branch of AI focused on building algorithms that infer rules and improve performance automatically from experience and data. Unlike traditional programming, ML models extract statistical patterns without manual hardcoding of logical rules.
2In Artificial Intelligence, what is the primary purpose of the Turing Test proposed by Alan Turing in 1950?
A.To measure the processing speed of a supercomputer
B.To evaluate whether a machine can exhibit human-like intelligent behavior
C.To test the memory capacity of a neural network
D.To verify the security of an encryption algorithm
Explanation: The Turing Test evaluates if a machine can converse in natural language convincingly enough that a human evaluator cannot reliably distinguish it from another human. It serves as a benchmark for behavioral artificial intelligence.
3What distinguishes Narrow AI (Weak AI) from General AI (Strong AI)?
A.Narrow AI requires hardware accelerators, while General AI runs on standard CPUs
B.Narrow AI is designed for a specific task, while General AI possesses human-like general cognitive abilities across domains
C.Narrow AI uses deep neural networks, while General AI uses decision trees
D.Narrow AI cannot process text data, while General AI only handles images
Explanation: Narrow AI operates within a dedicated domain or limited scope, such as chess playing or image recognition. General AI refers to hypothetical systems capable of learning, reasoning, and adapting to any intellectual task a human can perform.
4In state-space search algorithms, what role does a heuristic function h(n) play?
A.It counts the exact number of nodes generated in memory
B.It provides an estimate of the cost to reach the goal state from node n
C.It guarantees that the search algorithm will run in linear time
D.It reverses the search path from the goal state back to the initial state
Explanation: A heuristic function estimates the minimum cost needed to travel from a given node n to the goal node. Informed search algorithms such as A* use this estimate to guide path prioritization towards the most promising branches.
5Which uninformed search strategy expands the shallowest nodes in the search tree first using a First-In-First-Out (FIFO) queue?
A.Depth-First Search (DFS)
B.Breadth-First Search (BFS)
C.A* Search
D.Greedy Best-First Search
Explanation: Breadth-First Search (BFS) explores nodes level-by-level using a FIFO queue structure. This guarantees that all nodes at depth d are visited before any nodes at depth d+1 are evaluated.
6Under what condition is an A* search algorithm guaranteed to find the optimal (lowest cost) path when searching a graph with an admissible heuristic?
A.The heuristic never overestimates the actual cost to reach the goal state
B.The heuristic always overestimates the cost by at least ten percent
C.The search tree depth is restricted to less than ten levels
D.The branching factor of every node is equal to one
Explanation: An admissible heuristic never overestimates the true cost from node n to the goal. When paired with graph search, consistency (or admissibility on trees) ensures A* yields an optimal solution without prematurely terminating on suboptimal paths.
7In game-playing AI algorithms like Minimax with Alpha-Beta pruning, what does the 'Alpha' parameter represent?
A.The minimum score that the minimizing player is assured of
B.The maximum score that the maximizing player is assured of
C.The depth limit of the search tree
D.The total number of leaf nodes evaluated
Explanation: In Alpha-Beta pruning, Alpha tracks the best (highest) score that the maximizing player can guarantee along the path examined so far. Beta tracks the best (lowest) score for the minimizing player.
8Which component of an Expert System contains the domain-specific 'if-then' rules supplied by human experts?
A.Inference Engine
B.Knowledge Base
C.User Interface
D.Explanation Facility
Explanation: The Knowledge Base stores domain knowledge, rules, and facts provided by domain experts. The Inference Engine then applies logical rules from the Knowledge Base to deduce answers for user queries.
9What is forward chaining in rule-based expert systems?
A.Starting with a hypothesis and working backward to check supporting facts
B.Starting with known facts and applying inference rules to extract new facts until a goal is reached
C.Training a neural network with backpropagation
D.Pruning nodes in a decision tree based on information gain
Explanation: Forward chaining is a data-driven reasoning strategy. It begins with available facts in working memory and repeatedly applies matching rules to derive additional facts until a conclusion or goal state is established.
10In intelligent agent architecture, an agent that acts based purely on the current percept, ignoring percept history, is known as a:
A.Model-based reflex agent
B.Simple reflex agent
C.Goal-based agent
D.Utility-based agent
Explanation: A simple reflex agent selects actions based solely on the current perception, operating on condition-action rules without maintaining internal memory of past percepts.

About the WBCHSE HS Artificial Intelligence & Data Science Exam

The WBCHSE Artificial Intelligence and Data Science exam evaluates students on their foundational understanding of AI, machine learning, data processing, and associated ethical considerations, preparing them for higher education in technology. This OpenExamPrep bank is an English-language four-option MCQ study aid for the WBCHSE Higher Secondary subject; it does not replace official Bengali/English board papers, descriptive writing, or required practical/project/performance evidence.

Assessment

WBCHSE Higher Secondary subject AIDS: Semesters I–IV across Classes XI–XII; theory examinations plus practical/project/performance where the syllabus requires them.

Time Limit

As per semester notification (typically 2–3 hours for theory sittings)

Passing Score

30% minimum in theory and in practical/project independently (WBCHSE examination FAQ)

Exam Fee

Semester enrolment fee structure (Council): Sem III/IV student total INR 215 (155 enrolment + 30 processing + 30 convenience), with INR 190 to Council and INR 25 centre grant; supplementary often INR 50/paper. Separately, the public Fees page lists Class XII examination fees (within schedule) about INR 205 lab / INR 195 non-lab / INR 135 special. Confirm the applicable circular for the sitting. (West Bengal Council of Higher Secondary Education (WBCHSE))

WBCHSE HS Artificial Intelligence & Data Science Exam Content Outline

core

Machine Learning & Core Algorithms

Covers supervised learning, unsupervised learning, regression, classification, and model evaluation metrics.

core

Data Preprocessing & Python Ecosystem

Covers data cleaning, feature engineering, and scientific computing with Pandas, NumPy, and Matplotlib.

core

Neural Networks & Deep Learning Concepts

Introductory concepts in artificial neural networks, activation functions, backpropagation, and loss functions.

core

Natural Language Processing & Applications

Fundamentals of NLP, tokenization, text processing, vectorization, and language model applications.

core

AI Ethics & Responsible AI Deployment

Principles of fairness, transparency, bias mitigation, privacy, and safety in modern AI systems.

How to Pass the WBCHSE HS Artificial Intelligence & Data Science Exam

What You Need to Know

  • Passing score: 30% minimum in theory and in practical/project independently (WBCHSE examination FAQ)
  • Assessment: WBCHSE Higher Secondary subject AIDS: Semesters I–IV across Classes XI–XII; theory examinations plus practical/project/performance where the syllabus requires them.
  • Time limit: As per semester notification (typically 2–3 hours for theory sittings)
  • Exam fee: Semester enrolment fee structure (Council): Sem III/IV student total INR 215 (155 enrolment + 30 processing + 30 convenience), with INR 190 to Council and INR 25 centre grant; supplementary often INR 50/paper. Separately, the public Fees page lists Class XII examination fees (within schedule) about INR 205 lab / INR 195 non-lab / INR 135 special. Confirm the applicable circular for the sitting.

Keys to Passing

  • Complete 500+ practice questions
  • Score 80%+ consistently before scheduling
  • Focus on highest-weighted sections
  • Use our AI tutor for tough concepts

WBCHSE HS Artificial Intelligence & Data Science Study Tips from Top Performers

1Master Python fundamentals, especially Pandas and NumPy for data manipulation.
2Practice solving numerical problems on confusion matrix and probability.
3Understand the conceptual difference between supervised, unsupervised, and reinforcement learning.
4Familiarize yourself with basic deep learning architectures and NLP tasks.
5Review ethical case studies to answer subjective questions on AI bias.
6Work on practical projects to build hands-on intuition for data science pipelines.

Frequently Asked Questions

Who is eligible for this exam?

Students enrolled in Class 12 under the WBCHSE board who have chosen AI and Data Science as a subject.

What is the passing criteria?

Students must secure at least 30% in theory and in practical/project independently for the mandatory best-of-five subjects (two languages and three electives), per the Council examination FAQ.

Is programming knowledge required?

Yes, basic proficiency in Python and libraries like Pandas and NumPy is essential for the practical and theory components.

Does it include Deep Learning?

Yes, fundamental concepts of neural networks and deep learning are included in the syllabus.

Are calculators allowed?

Typically, basic calculators are allowed for numerical questions, but students should confirm with the latest board guidelines.

Is AI Ethics part of the syllabus?

Yes, topics covering ethical considerations, bias in AI, and responsible AI are integral to the curriculum.

Are these practice questions the same as the official WBCHSE AIDS paper?

No. Official non-language elective papers are set in Bengali and English under the semester system and may include descriptive and practical/project components. These items are an English MCQ study adaptation only.

Are these MCQs identical to the official WBCHSE AIDS question paper?

No. Official non-language elective papers are set in Bengali and English under the semester system and may include descriptive and practical/project components. These items are an English MCQ study adaptation only.