0% found this document useful (0 votes)
22 views5 pages

3rd Quart Exam Robtics & AI Class 10

The document is an examination paper for Class X students at Carman Residential and Day School, focusing on Robotics and Artificial Intelligence. It includes multiple-choice questions, short answer questions, and programming tasks related to Python, data visualization, and robotics concepts. The exam is structured into two sections, with a total duration of 2 hours and a maximum mark of 100.

Uploaded by

Arokya Nathan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22 views5 pages

3rd Quart Exam Robtics & AI Class 10

The document is an examination paper for Class X students at Carman Residential and Day School, focusing on Robotics and Artificial Intelligence. It includes multiple-choice questions, short answer questions, and programming tasks related to Python, data visualization, and robotics concepts. The exam is structured into two sections, with a total duration of 2 hours and a maximum mark of 100.

Uploaded by

Arokya Nathan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

CARMAN RESIDENTIAL AND DAY SCHOOL, DALANWALA, DEHRADUN

3rd QUARTERLY EXAMINATION – AUGUST 2024-25


ROBOTICS AND ARTIFICIAL INTELLIGENCE
CLASS – X
TIME: 2 HR MM: 100

SECTION – A
(Attempt all questions)

Question (1) Multiple choice questions. [20]


i) Which of the following character is used to give a single line comment in
python?
a) // b) #
c) ! d) /*
ii) Which one of the following statements about cobots is true?
a) Cobots eliminate the need for human presence
b) Cobots work collaboratively with humans
c) Cobots are used only in educational settings
d) Cobots are outdated technology
iii) Which of the following is an example of a robotic exoskeleton used in
rehabilitation?
a) Robotic vacuum cleaner b) Robotic prosthetic arm
c) Robotic pet companion d) Robotic lawn mower
iv) Camera is an example of…
a) Pressure Sensor b) Vision Sensor
c) Solar Sensor d) Motion Sensor
v) How are cobots programmed for different tasks?
a) They learn on their own through trial and error.
b) They require complex programming by robotics experts.
c) They can be easily programmed by non-experts using intuitive interfaces.
d) They cannot be programmed once their initial tasks are defined.
vi) Robot is derived from Czech word.
a) Rabota b) Robota c) Rebota d) Ribota
vii) Which of the following expression is the correct option for ab?
a) a*b b) a**b c) a^b d) a^*b
viii) _________ is the use of technology to harass, threaten, embarrass or
target another person.
a) Cyber Harassing b) Cyber Targeting
c) Cyberstalking d) Cyberbullying
ix) Which type of sensor is commonly used to measure the distance between
a robot and nearby objects.
(a) Proximity sensor (b) Temperature sensor (c) Force sensor (d) no one
x) Which sensor is commonly used in robotics to detect touch or pressure?
(a) Proximity sensor (b) Tactile sensor (c) Gyroscope (d) Microphone

xi) Which type of sensor is commonly used to measure temperature?


a) Thermocouple b) Proximity sensor c) Accelerometer d) Camera sensor
xii)Why is data quality important in AI data acquisition?
a) High-quality data is more entertaining.
b) Low-quality data is cheaper to acquire.
c) AI models perform better with high-quality data
d) Data quality doesn’t impact AI performance
xiii) What is Numpy?
a) A web development framework b) A data visualization library
c) A numerical computing library d) A machine learning library
xiv) Which of the following is true about the Pandas Series?
a. It is a two-dimensional data structure
b. It can contain data of different data types
c. It is similar to a Python dictionary
d. It cannot contain missing values
xv) In Matplotlib, which method is used to display a plot?
a) show() b) display()
c) plot() d) print()
xvi) What is the purpose of the Python package manager pip?
a) To create virtual environments. b) To update the python interpreter
c) To install and manage third-party libraries d) To execute python scripts.
xvii) The short form of malicious software is
a) Malware b) Malsoft c) Maliware d) Malisoft
xviii) Who proposed the Turing Test?
a) Alan turing b) Charles Babbage
c) John von Neumann d) Isaac Newton

xix) Which python library is widely used for data visualization and plotting?
a) Numpy b) Matplotlib c) Pandas d) Scikit-learn

xx) In ______ the email is received from a forged email address but it
appears to be from some authentic source.
a) Email spoofing b) Email forging c) Email harassing d) Email targeting

Question (2) Answer the following Questions:

i) What are some features of smart home robotic systems? [2]


ii) Give a few examples of assistant robots being used in India. [2]
iii) Difference between Data and Information. [2]
iv) What is Turing Test, and what role does it play in AI? [2]
v) Write differences between a sensor and an actuator [2]
vi) What will be the output of the following code? [2]
Import pandas as pd
seriesNum = pd.Series([10,30,50])
print seriesNum[2]

vii) What will be the output of the code given below [2]
text = ['Python','Programming']
print (len(text))

viii) What will be the output of the code given below: [2]
my_list = [10,20,30,40,50];
print(“The number is”, my_list[-2])

ix) What will be the value of n after the following code is run? [2]
n = [1,2,3,5]
n[2] = n[2] + 1

x) Predict the ourput of the following code? [2]


colors = [‘light blue’, ‘yellow’]
colors[1] = ‘pink’
print (colors)
SECTION – B
(Attempt any four questions from this section)
The answers in this section should consist of the programs in either python
environment or any program environment with python as the base.

Question (3)

i) Define autonomous drones. Mention its few uses. [3]


ii) What is Matplotlib, and why is it important in data visualization? [3]
iii) Write a python program to plot a bar chart using the Matplotlib library. Your
program should: [9]
1) Import the necessary libraries.
2) Create a list of categories and their corresponding values.
3) Plot a bar chart with appropriate labels and a title.

Question (4)

i) Define the role of sensors in robotics. [3]


Differentiate between internal and external sensors with examples.

ii) Describe Gear Ratio with an example [3]


iii) Write a program to calculate the percentage of a student of 5 subjects takes
from user at runtime. Print Grade according to the % as given below. [9]
90 – 100 ---- A+
80 – 89 ---- A
70 – 79 ---- B+
60 – 69 ---- B
50 – 59 ---- C
40 – 49 ---- D
Below 40 ---- E

Question (5)

i) Explain the importance of integrating sensors, actuators and controllers in a


robotics system. [3]
ii) Difference between Artificial Intelligence and Machine Learning [3]
iii) Write a python program that perform the following operations on a list of
integers. [9]
1) Create a list of the integers: [1,8,7,2,21,15]
2) Sort the list in ascending order.
3) Reverse the list.
4) Append integer 8 to the list.
5) Insert integer 19 at index 3
6) Delete integer 15 from the list.
7) Print the final list.
Question (6)

i) Write a program in python to count the number of vowels in the given string.
[3]
ii) Write a program in python to find a maximum number among three numbers.
[3]
iii) Write a python program that performs the following operations on a tuple.
[9]
1) Create a tuple with the elements (5,10,15,20,25)
2) Access and print the element at index 2.
3) Convert the tuple into a list.
4) Append the integer 30 to the list.
5) Convert the list back into a tuple.
6) Print the final tuple

Question (7)

i) Explain the use of Tinker cad in designing robotic components. What are the
advantages of visualizing motion using Tinker cad? [3]
ii) List three ethical issues related to cyber security. [3]
iii) Write a python program to accept a number from the user at runtime and
check whether the number is palindrome or not using while loop. [9]

Question (8)

i) Write a program to input a number and print the sum of its digits? [3]
ii) Define the following terms:- [3]
Cyber-crime, Cyber bullying, Malware, Cyberstalking, Ransomware
iii) Describe the process of building a simple wheeled mobile robot and mention
the key components involved. [4]
iv) Explain the following term with example. [5]
String with slicing, Lists and its methods, Tuples & its methods

---END--

You might also like