884-Robotics-Sqp-Ak Class 11
884-Robotics-Sqp-Ak Class 11
PAPER 1
(THEORY)
Maximum Marks: 70
Time Allotted: Three Hours
Reading Time: Additional Fifteen Minutes
Instructions to Candidates
1. You are allowed additional fifteen minutes for only reading the question
paper.
2. You must NOT start writing during the reading time.
3. This question paper has 8 printed pages.
4. It is divided into two sections and has 9 questions in all.
5. Part I is compulsory and has two questions.
6. Part II is divided into seven questions. Answer any five questions.
7. While attempting Multiple Choice Questions in Part I, you are required
to write only ONE option as the answer.
8. Each question in Part II has three sub parts. Any five questions have
to be attempted.
9. The intended marks for questions are given in brackets [ ].
---------------------------------------------------------------------------------------------------------------------
ISC (CLASS XI) SPECIMEN QUESTION PAPER 2026
1
Note: The Specimen Question Paper in the subject provides a realistic format of the
Board Examination Question Paper and should be used as a practice tool. The questions for the
Board Examination can be set from any part of the syllabus, though the format of the Board
Examination Question Paper will remain the same as that of the Specimen Question Paper.
The weightage allocated to various topics, as given in the syllabus, will be strictly adhered to.
(ii) Given below are two statements marked Assertion and Reason. Read the [1]
statements carefully and choose the correct option.
Assertion: Modern robots often operate autonomously or semi-autonomously
using sensors and AI.
Reason: AI and machine learning enhance a robot's ability to perceive, process
information, and make decisions without constant human intervention.
(Analysis)
----------------------------------------------------------------------------------------------------------------------------------
ISC (CLASS XI) SPECIMEN QUESTION PAPER 2026
2
(a) Both Assertion and Reason are true and Reason is the correct explanation
for the Assertion.
(b) Both Assertion and Reason are true but Reason is not the correct
explanation for the Assertion.
(c) Assertion is true and Reason is false.
(d) Both Assertion and Reason are false.
(iii) Which component's power requirement would generally be the highest in a mobile [1]
robot system? (Evaluate)
(a) A single IR sensor
(b) A microcontroller (SBC)
(c) Motors driving the wheels
(d) A touch sensor
(iv) Which Boolean operator would be most suitable to ensure a robot's safety system [1]
activates only when both an obstacle is detected AND the robot is in motion?
(Evaluate)
(a) OR
(b) NOT
(c) XOR
(d) AND
(v) Given below are two statements marked Assertion and Reason. Read the [1]
statements carefully and choose the correct option.
Assertion: Lithium-ion batteries are widely favoured in mobile robotics.
Reason: They offer high energy density and a relatively long-life cycle compared
to many other battery types, making them suitable for portable
applications. (Analysis)
(a) Both Assertion and Reason are true and Reason is the correct explanation
for the Assertion.
(b) Both Assertion and Reason are true but Reason is not the correct
explanation for the Assertion.
(c) Assertion is true and Reason is false.
(d) Both Assertion and Reason are false.
--------------------------------------------------------------------------------------------------------------------------------
ISC (CLASS XI) SPECIMEN QUESTION PAPER 2026
3
(vi) Given below are two statements marked Assertion and Reason. Read the [1]
statements carefully and choose the correct option.
Assertion: Planar mechanisms are characterized by their motion being restricted to
a single two-dimensional plane.
Reason : An industrial robotic arm is an example of a planar mechanism because
its movements are often complex and span three dimensions.
(Analysis)
(a) Both Assertion and Reason are true and Reason is the correct explanation
for the Assertion.
(b) Both Assertion and Reason are true but Reason is not the correct
explanation for the Assertion.
(c) Assertion is true and Reason is false.
(d) Both Assertion and Reason are false.
(vii) Which type of motor is known for providing precise angular movement and is [1]
commonly used in applications requiring exact positioning, like robotic arms?
(Recall)
(a) DC Motor
(b) Stepper Motor
(c) Servo Motor
(d) Brushless DC Motor
(viii) A robotics engineer is using a software application to design and simulate the [1]
physical structure of a robot's arm before manufacturing it. This process is known
as: (Recall)
(a) System Visualization
(b) Algorithmic Programming
(c) Sensor Integration
(d) Computer-Aided Design (CAD) modeling
(ix) What is masking in Robotic Controllers? (Recall) [1]
(x) What is the term used for the overall planning, execution, and monitoring of a [1]
robotics project to ensure it meets its goals and is completed on time? (Recall)
Question 2
(i) How does a moving frame differ from a fixed frame? (Understanding) [2]
(ii) What is the main advantage of using ‘timers’ in microcontroller programming for a [2]
robot, specifically for tasks that require precise delays or periodic actions?
(Understanding)
----------------------------------------------------------------------------------------------------------------------------------
ISC (CLASS XI) SPECIMEN QUESTION PAPER 2026
4
(iii) The following function checkSensor() simulates a basic safety check. Assume [3]
currentSpeed is an integer and obstacleDetected is a boolean.
public boolean checkSensor(int currentSpeed, boolean obstacleDetected) {
if (currentSpeed > 5 && obstacleDetected == true) {
return false; // Safety trigger
} else if (currentSpeed <= 5 && obstacleDetected == true) {
return true; // Slow and safe
} else {
return true; // Path clear
}
}
What will the function checkSensor() return if currentSpeed = 7 and
obstacleDetected = true? Perform a dry run. (Application)
(iv) A drone's primary mission is to collect data for aerial mapping. Identify one [2]
specific "sensor payload" that is essential for this task and briefly state its function
in this context. (Understanding)
(v) The following line of code is found in a microcontroller program for a robot: [1]
digitalWrite(LED_PIN, HIGH);
What action does this single line of code typically perform on a connected
component in a robot? (Recall)
(i) A startup is designing a new autonomous delivery robot for urban environments. [4]
Discuss two critical challenges they might face regarding "New Age Robotics
Systems," specifically concerning sensor integration and AI decision-making for
safe navigation in unpredictable human environments. Provide a potential
innovative solution for each challenge. (Evaluate)
(ii) Differentiate between ‘Planar Mechanisms’ and ‘Spatial Mechanisms’ using real- [3]
life robotic examples. (Understanding)
(iii) How many ‘Degrees of Freedom’ does a single rigid body have when operating in [3]
3D space? Briefly state what each degree of freedom represents.
(Understanding)
--------------------------------------------------------------------------------------------------------------------------------
ISC (CLASS XI) SPECIMEN QUESTION PAPER 2026
5
Question 4
(i) A robot is designed to activate an alarm system. The alarm should trigger if either [4]
an intruder is detected by a motion sensor (Input M) OR when a panic button is
pressed (Input P), AND simultaneously the system is armed (Input A). Draw a
flowchart representing this logical decision for the robot's alarm system. (Create)
(ii) Explain the significance of "Matrix Operations" in the context of programming a [3]
robotic arm to accurately perform a pick-and-place task, involving changes in its
orientation and position. (Understanding)
(iii) A student is trying to design a simple mobile robot that can move in any direction [3]
without physically turning its body. Which specific type of wheel would be most
appropriate for designing this capability? Explain. (Application)
Question 5
(i) You are given a simple robotic arm that consists of two links (L_1, L_2) and two [4]
rotating joints (J_1, J_2) operating in a 2D plane. J_1 is fixed at the origin. Draw a
conceptual diagram of this 2R planar open chain mechanism. If the joint angles are
theta_1 and theta_2 (relative to the previous link), explain the concept of "Forward
Kinematics" for this arm. (Note: Students are expected to draw a simple diagram of
a 2R arm.) (Create)
(ii) Explain briefly, why "Fixed Frame" are fundamental for defining the overall [3]
workspace and movement constraints of a complex industrial robotic arm.
(Understanding)
(iii) Briefly describe the primary goal of "Project Management" in a complex robotics [3]
development initiative. (Recall)
Question 6
(i) A robotic arm needs to achieve extremely high precision in semiconductor [4]
manufacturing. Compare and contrast ‘Accuracy’ and ‘Repeatability’ as robot
specifications. Explain how ‘Integrated Vision Systems’ and ‘Adaptive Control
Systems’ contribute to improving these two specifications respectively.
(Application and Analysis)
(ii) Explain why an "algorithm" is considered the foundational step before writing any [3]
"pseudo code" or actual program for a microcontroller in a robotics project.
(Understanding)
----------------------------------------------------------------------------------------------------------------------------------
ISC (CLASS XI) SPECIMEN QUESTION PAPER 2026
6
(iii) Consider the following C-like pseudo code for a simple robotic task: [3]
int counter = 0; void setup() { // Initialize pins for LED and button // Set LED pin
as output, button pin as input }
void loop() {
if (digitalRead(buttonPin) == HIGH) {
delay(50); // Debounce
if (digitalRead(buttonPin) == HIGH) {
counter = counter + 1;
delay(200); // Prevent multiple counts per press
}
}
if (counter % 2 == 0) {
digitalWrite(ledPin, HIGH); // Turn LED ON
} else {
digitalWrite(ledPin, LOW); // Turn LED OFF
}
}
What will be the state of the `ledPin` (HIGH/LOW) after the button has been
pressed and released exactly three times? Justify your answer. (Application)
Question 7
(i) A robotics engineer is debugging a new embedded C program for a mobile robot. [4]
The robot occasionally stops responding to commands. Describe a systematic
approach to "debugging" this issue, including at least two specific techniques that
might be employed. (Application and Analysis)
(ii) Explain the importance of a well-designed "Control System" in ensuring both the [3]
"accurate" and "safe" performance of a surgical robot. (Understanding)
(iii) A robotic arm is programmed to move its end-effector to a specific coordinate [3]
(X,Y,Z). If the robot's control system relies on knowing the current position for
path planning, which "Boolean operator" is most likely used to confirm that the
robot has reached all three specified coordinates simultaneously within a tolerance?
(Application)
Question 8
(i) Compare and contrast ‘IR sensors’ and ‘Ultrasonic sensors’ in terms of their [4]
working principles, advantages, and disadvantages when used for obstacle detection
in a low-cost mobile robot. (Analysis)
(ii) Describe the basic architecture of a "Microcontroller (SBC)" by explaining the roles [3]
of its three main functional blocks. (Understanding)
--------------------------------------------------------------------------------------------------------------------------------
ISC (CLASS XI) SPECIMEN QUESTION PAPER 2026
7
(iii) A small drone requires a compact and lightweight power source that can deliver [3]
sustained power for flight. Which type of battery (Lithium-ion or Lead-acid) would
be more suitable for this application? Justify your choice based on battery
characteristics. (Evaluate)
Question 9
(i) Explain how ‘Manipulators’ are fundamentally different from ‘Mobile Robots’ in [4]
terms of their primary function and typical operational environment. Provide one
distinct real-world application for each type of robot. (Understanding)
(ii) You are developing a farming drone for precision agriculture. Besides a camera, [3]
identify two other essential ‘sensor payloads’ that would significantly enhance its
capability for monitoring crop health and identifying disease outbreaks. Briefly
explain the function of each. (Analysis)
(iii) A robotics team is integrating various sensors (e.g., gyroscope, accelerometer) with [3]
a central microcontroller on a small mobile platform.
Which ‘communication protocol’ (UART, I2C, SPI, CAN) would typically be
preferred for connecting multiple such sensors to a single microcontroller, allowing
for simpler wiring and addressing? Justify your answer.
(Evaluate)
----------------------------------------------------------------------------------------------------------------------------------
ISC (CLASS XI) SPECIMEN QUESTION PAPER 2026
8
ROBOTICS
PAPER 1
(THEORY)
ANSWER KEY
Question 2
(i) Fixed Frame (also called World Frame or Inertial Frame) [2]
A coordinate system that does not move. It is fixed in space and used as a
reference.
Moving Frame (also called Body Frame or Local Frame)
A coordinate system that moves along with an object, such as a robot's hand or
a drone.
(ii) The main advantage of using timers is that they allow for precise, time-based actions [2]
without halting or "blocking" the main program execution. Unlike a simple delay()
function which stops all other code from running, a timer works in the background.
---------------------------------------------------------------------------------------------------------------------
ISC (CLASS XI) SPECIMEN QUESTION PAPER 2026
1
(iii) (a) currentSpeed = 7 [3]
obstacleDetected = true
The if statement (currentSpeed > 5 && obstacleDetected == true) is
checked.
(7 > 5 && true == true) evaluates to (true && true), which is true.
The code block inside this if statement is executed.
The function will return false.
Answer: The function checkSensor() will return false.
(iv) Sensor Payload: A crucial sensor payload for aerial mapping is a high-resolution [2]
camera (often a multispectral or hyperspectral camera).
Function: A standard high-resolution camera captures visible light images, which
can be stitched together to create a detailed map of the area.
(v) This line of code, digitalWrite(LED_PIN, HIGH);, will typically turn ON the LED [1]
(or any other component) connected to the specified pin (LED_PIN). The HIGH
state corresponds to a high voltage level (e.g., 5V or 3.3V), which provides the power
to activate the component.
Question 3
(i) Challenge 1: Sensor fusion and unreliable data in dynamic environments. [4]
Explanation: A delivery robot in a city must navigate crowds, varying weather
conditions (rain, sun glare), and unpredictable objects (potholes, a child's toy).
No single sensor (e.g., a camera, LiDAR) is perfectly reliable in all these
conditions. Rain can obscure camera images, and sun glare can blind sensors. The
robot needs to process data from multiple sensors simultaneously (sensor fusion)
to build a robust environmental model, but conflicting or noisy data can lead to
dangerous misinterpretations.
Innovative Solution: Implement an AI model based on a Kalman Filter or a
Particle Filter for sensor fusion. This probabilistic approach can weigh the
reliability of each sensor's data in real-time, effectively "trusting" the more
reliable sensor data while accounting for the uncertainty of the others. The system
could learn to prioritize LiDAR data in low-light conditions and visual data in
clear weather, dynamically adapting to the environment.
--------------------------------------------------------------------------------------------------------------------------------
ISC (CLASS XI) SPECIMEN QUESTION PAPER 2026
2
Innovative Solution: Develop a predictive risk assessment module within the
AI. This module would not just detect obstacles but would also predict the likely
trajectories of pedestrians, vehicles, and other dynamic objects. The AI would
then calculate the risk of collision for a range of possible actions (e.g., braking,
swerving, continuing) and choose the action with the lowest overall risk,
prioritizing human safety above all. This system would be trained on vast datasets
of real-world urban scenarios, allowing it to "learn" a safe and responsible
decision-making strategy.
(ii) Planar Mechanisms vs Spatial Mechanisms [3]
Planar Mechanisms: These are robotic systems whose links and joints are
constrained to move within a single, two-dimensional plane.
Example: A simple robotic arm used for drawing or a pick-and-place robot on a
flat conveyor belt. The motion is defined by two translational axes (X, Y) and
one rotational axis (Z).
Spatial Mechanisms: These are robotic systems that are free to move and
operate in all three dimensions of space.
Example: An industrial welding robot or a surgical robot arm. The movements
are complex, involving three translational axes (X, Y, Z) and three rotational axes
(roll, pitch, yaw) to position the end-effector at any point in its workspace with
any desired orientation.
(iii) A single rigid body in 3D space has six Degrees of Freedom (DoF). [3]
Three Translational Degrees of Freedom: These represent the ability to move
the body along the three Cartesian axes:
▪ x-axis: Movement forward and backward.
▪ y-axis: Movement left and right.
▪ z-axis: Movement up and down.
Three Rotational Degrees of Freedom: These represent the ability to rotate the
body about the three Cartesian axes:
▪ Roll: Rotation about the x-axis.
▪ Pitch: Rotation about the y-axis.
▪ Yaw: Rotation about the z-axis.
Question 4
Question 5
--------------------------------------------------------------------------------------------------------------------------------
ISC (CLASS XI) SPECIMEN QUESTION PAPER 2026
4
(ii) Fixed frames are fundamental in industrial robotics because they provide a stable, [3]
universal reference point for all motion planning, workspace definition, and safety
constraints. They anchor the entire robot system, allowing consistent calculation of
positions, orientations, and limits for each joint and tool. Without a fixed frame, the
robot cannot accurately understand its position in the environment, coordinate with
other machines, or safely operate within defined zones.
(iii) The primary goal of Project Management in a robotics development initiative is to [3]
ensure that the project is completed on time, within budget, and to the specified
quality standards. This involves:
Planning: Defining the project scope, goals, and deliverables.
Organizing: Allocating resources (personnel, funds, equipment) and scheduling
tasks.
Controlling: Monitoring progress, managing risks, and making adjustments to
keep the project on track.
Communication: Facilitating clear communication among team members and
stakeholders. In essence, it's about systematically guiding a complex process
from concept to completion, minimizing failures and maximizing efficiency.
Question 6
--------------------------------------------------------------------------------------------------------------------------------
ISC (CLASS XI) SPECIMEN QUESTION PAPER 2026
5
(iii) Justification: [3]
1. Initial state: counter = 0. counter % 2 == 0 is true, so the ledPin is HIGH.
2. First Press: The button is pressed. The if condition digitalRead(buttonPin)
== HIGH is met. The counter is incremented to 1. counter % 2 == 0 (1 % 2
== 0) is now false, so the ledPin is set to LOW.
3. Second Press: The button is pressed again. The counter is incremented to 2.
counter % 2 == 0 (2 % 2 == 0) is true, so the ledPin is set back to HIGH.
4. Third Press: The button is pressed for the third time. The counter is
incremented to 3. counter % 2 == 0 (3 % 2 == 0) is false, so the ledPin is set
to LOW.
Answer: After the button has been pressed and released exactly three times, the
ledPin will be LOW.
Question 7
--------------------------------------------------------------------------------------------------------------------------------
ISC (CLASS XI) SPECIMEN QUESTION PAPER 2026
6
Safe Performance: The control system implements crucial safety protocols. It
can have redundant safety checks, such as monitoring for excessive force
(preventing tissue damage), and setting virtual boundaries to prevent the robot
from moving outside of the sterile field. In a master-slave system, the control
system acts as a filter, dampening a surgeon's tremors to ensure smooth, precise
movements. Furthermore, a failsafe mechanism in the control system can
immediately stop all motion if an error is detected or power is lost.
(iii) The most likely Boolean operator is AND. [3]
Justification: The robot's control system needs to confirm that it has reached the
target position in the x-direction AND the y-direction AND the z-direction. For
example, the pseudocode might look like this:
if (x_current== x_target && y_current == y_target && z_current == z_target)
The && (AND) operator ensures that all conditions are simultaneously true
before the system confirms the robot has successfully reached its destination.
Question 8
(i) [4]
Feature IR Sensor Ultrasonic Sensor
Working Principle Emits an infrared light beam Emits a high-frequency
and measures the amount of sound wave and
reflected light. The distance measures the time it
is calculated based on the takes for the echo to
intensity of the reflected return. The distance is
light (analog) or the time of calculated using the
flight (digital). speed of sound.
Advantages - Fast response time: Can - Unaffected by object
detect obstacles very color: Measures distance
quickly. - Unaffected by to both dark and
ambient light: Works well reflective objects equally
in both light and dark well. - Wider beam
conditions (though bright angle: Can detect a
sunlight can interfere with wider range of obstacles
some). - Low power with a single sensor. -
consumption. Reliable over a
moderate range.
Disadvantages - Affected by object - Slower response time:
color/material: Dark or Needs to wait for the
non-reflective surfaces sound wave to travel and
absorb IR light, making return. - Narrow beam
them difficult to detect. - (cone): Can miss small,
Prone to interference from thin objects that pass
ambient light: Direct between the sound
sunlight can flood the waves. - Affected by soft
sensor. - Limited range: surfaces: Materials like
Typically shorter range and cloth or foam can absorb
less precise at longer sound, making them
distances. difficult to detect.
--------------------------------------------------------------------------------------------------------------------------------
ISC (CLASS XI) SPECIMEN QUESTION PAPER 2026
7
(ii) Microcontroller (SBC) Architecture The three main functional blocks of a [3]
microcontroller are:
1. Central Processing Unit (CPU): This is the "brain" of the microcontroller.
It's responsible for fetching, decoding, and executing instructions from the
program memory. It performs all the logical and mathematical operations
required for the robot to make decisions and control its components.
2. Memory: This block stores the program code and the data the program uses.
It is typically divided into two types:
Program Memory (ROM/Flash): This is non-volatile memory that
stores the code that the CPU executes. It retains its contents even when
the power is turned off.
Data Memory (RAM): This is volatile memory that stores temporary
variables and data used by the program during runtime.
3. Input/Output (I/O) Peripherals: These are the interfaces that allow the
microcontroller to interact with the outside world. They include things like:
Digital I/O pins: For turning things on/off (e.g., an LED) and reading
switch states.
Analog-to-Digital Converters (ADCs): To read analog sensor data (e.g.,
a potentiometer).
Communication interfaces (UART, I2C, SPI): To talk to other
microcontrollers, sensors, or modules.
Timers: To perform time-based tasks.
(iii) Lithium-ion (Li-ion) batteries would be more suitable for a small drone. [3]
High Energy Density: Li-ion batteries can store a large amount of energy in a
small, lightweight package. This is crucial for a drone, as every gram of weight
has a significant impact on flight time and manoeuvrability. Lead-acid batteries
are heavy and bulky for the amount of energy they provide.
Sustained Power Delivery: Li-ion batteries have a high power-to-weight ratio,
meaning they can deliver high currents required for the drone's motors to provide
thrust, without significant voltage drop. Lead-acid batteries are not as efficient in
this regard.
Lower Self-Discharge: Li-ion batteries hold their charge for a longer time when
not in use compared to lead-acid batteries, which is beneficial for a device that
may not be used every day.
Question 9
--------------------------------------------------------------------------------------------------------------------------------
ISC (CLASS XI) SPECIMEN QUESTION PAPER 2026
8
Typical Operational Environment: Designed to navigate dynamic and
often unstructured environments, such as a warehouse floor, a hospital, or an
outdoor urban area.
Real-world Application: An Autonomous Guided Vehicle (AGV) in a
warehouse that moves goods from one place to another.
(ii) Essential Sensor Payloads for a Farming Drone: [3]
1. Multispectral or Hyperspectral Sensor:
Function: This sensor captures data from multiple light bands, including
near-infrared (NIR) and red-edge. Healthy vegetation reflects high levels
of NIR light, while stressed or diseased plants reflect less. By analyzing
the ratios of these light bands (e.g., using the Normalized Difference
Vegetation Index or NDVI), the drone can generate a map of crop health,
identify nutrient deficiencies, and spot areas of disease outbreaks long
before they are visible to the naked eye.
2. Lidar (Light Detection and Ranging) Sensor:
Function: A Lidar sensor uses laser pulses to create a precise 3D point
cloud of the environment. This can be used to generate a digital elevation
model of the field. In precision agriculture, it can measure the height and
density of the crops, providing data that can be used to estimate biomass,
a key indicator of yield. It also provides accurate terrain mapping for
obstacle avoidance and efficient flight path planning.
(iii) I2C (Inter-Integrated Circuit) would typically be preferred. [3]
Justification: I2C is a multi-master, multi-slave communication protocol that
requires only two wires for communication: SDA (Data) and SCL (Clock). Each
sensor is assigned a unique address on the bus. This allows multiple sensors to be
connected to the same two pins on the microcontroller. The microcontroller can
then communicate with each sensor individually by addressing it by its unique
address. This significantly simplifies wiring and reduces the number of pins
required on the microcontroller, which is ideal for a small mobile platform with
limited space and resources.
--------------------------------------------------------------------------------------------------------------------------------
ISC (CLASS XI) SPECIMEN QUESTION PAPER 2026
9