0% found this document useful (0 votes)
1K views4 pages

11th IP Sample Paper

This document provides a sample question paper for the Informatics Practices subject for Class 11. It contains 5 sections (A-E) with a total of 70 marks. Section A has 18 multiple choice questions worth 1 mark each. Section B has 7 short answer questions worth 2 marks each. Section C has 5 short answer questions worth 3 marks each. Section D has 3 long answer questions worth 5 marks each. Section E has 2 questions worth 4 marks each. All programming questions must be answered in Python.

Uploaded by

Insaaf
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)
1K views4 pages

11th IP Sample Paper

This document provides a sample question paper for the Informatics Practices subject for Class 11. It contains 5 sections (A-E) with a total of 70 marks. Section A has 18 multiple choice questions worth 1 mark each. Section B has 7 short answer questions worth 2 marks each. Section C has 5 short answer questions worth 3 marks each. Section D has 3 long answer questions worth 5 marks each. Section E has 2 questions worth 4 marks each. All programming questions must be answered in Python.

Uploaded by

Insaaf
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/ 4

CLASS: XI SESSION: 2023‐24

INFORMATICS PRACTICES (065)


SAMPLE QUESTION PAPER (THEORY)
Maximum Marks: 70 Time Allowed: 3 hours
General Instructions:

1. This question paper contains five sections, Section A to E.


2. All questions are compulsory.
3. Section A has 18 questions carrying 01 mark each.
4. Section B has 07 Very Short Answer type questions carrying 02 marks each.
5. Section C has 05 Short Answer type questions carrying 03 marks each.
6. Section D has 03 Long Answer type questions carrying 05 marks each.
7. Section E has 02 questions carrying 04 marks each.
8. All programming questions are to be answered using Python Language only.

Part‐A
1. _________ use sensors to collect data of the surroundings. 1
(a) AI (b) Robots (c) Deep Learning (d) NLP
2. Numeric literals are int, float and__________. 1
(a) String (b) Complex (c) Number (d) All of these
(b)
3. ________are also referred to as distributed ledger technologies (DLT). 1
(a) Blockchains (b) Cloud Services (c) SaaS (d) Big Data
(b)
4. Where is artificial intelligence used? 1
(a) Training soldiers in combat using battlefield simulations.
(b) In self‐driving cars that do not require a driver
(c) To allow access to buildings
(d) To create prototypes of cars or any other object
5. True/False 1
AI is a model of human intelligence that is used to enable machines to think and act like humans.

6. Which of the following is a valid arithmetic operator in Python? 1


(a) // (b) ? (c) < (d) and
7. Which of the following is a data manipulation command? 1
(a) CREATE (b) ALTER (c) DELETE (d) RENAME
8. Fill in the Blank 1
Computes can use_______ to analyse, comprehend, and extract meaning from human languages like
English, Spanish, Hindi etc.

ORANGE EDUCATION 1
9. __________ is a computer network of geographically apart and heterogeneous computational resources. 1
(a) Grid (b) Map (c) Google (d) Block
10. Which of the following SQL commands is used to create a table ? 1
(a) MAKE TABLE (b) ALTER TABLE (c) DEFINE TABLE (d) CREATE TABLE
11. Ms. Aaarti is really impressed by the predictive typing feature of search engine that helps us by 1
suggesting the next word in the sentence while typing keywords. Suggest the feature of Artificial
Intelligence by which she was impressd.
(a) Computer Vision (b) Data Analysis
(c) Natural Language Processing (NLP) (d) None of these
12. The SQL statements always end with _________. 1
(a) , (b) : (c) ; (d) “

13. __________ computing ensures data storages, access, and secure handling of data. 1

14. Which SQL clause is used to list all different values only, if a column in a table contains duplicate values? 1
(a) DISTINCT (b) UNIQUE (c) BETWEEN (d) EXISTS

15. Find the output of the following codes: 1


a=0
for i in range (10):
a=a+1
for j in range (10):
a=a+1
print(a)
a. 10 b. 20 c. 30 d. 40
b.
16. Which of the following is not a feature of IoT devices? 1
(a) Remotely controllable (b) Security
(c) Can turn themselves off, if necessary (d) Wearable’s

Q17 and 18 are ASSERTION AND REASONING based questions. Mark the correct choice as
a) Both A and R are true and R is the correct explanation for A
b) Both A and R are true and R is not the correct explanation for A
c) A is True but R is False

17. Assertion (A): The system software is a set of programs which takes care of all the activities of a 1
computer system.
Reason(R): The system software is designed by the manufactures in low level languages to serve as an
interface between the user and the computer. It controls the various hardware and software
components of a computer system.

18. Assertion (A): A loop is a non‐repetitive structure in which a statement or a set of statements are 1
executed until the desired number of iterations is over.
Reason(R): The fixed iterative loop is a looping construct used to repeat the execution of a block of
statements for fixed number of times.
Part‐B
19. What is meant by disk fragmentation? 2
Or
What are the securities threats involved when you throw away electronic gadgets that are non‐
functional?

ORANGE EDUCATION 2
20. What is difference between public cloud and private cloud. 2
Or
How big data is useful in transportation?
21. Write a program to obtain a number n from a user and find its factorial. 2

22. Define the composite primary key. 2


23. Write the output of the following Python Program 2
for i in range( 21, 30, 2):
print(i)
print("Numbers between 20 to 30")

Or
What will be the output of the following code?
for i in range (55,50,‐2)
print (i)

24. What is difference between primary key and candidate key? 2


25. What is Data Model in Data Base Management System? 2
Part‐C
26. Write output for SQL queries (i) to (iii) which are based on the given table Student:‐ 3
Table :‐Student

RollNo. Name Class Fees Gender


1. Aditya 10th 7000 78
2. Priya 11th 7500 75
3. Aarti 10th 7000 76
4. Ajay 11th 7500 74

(i) Display all the record of the table Student.


(ii) Display Roll Number, Name and Class from the table Student.
(iii) Display all the details of the Aarti.

27. Write a short note on cache memory. 3

28. Write a Python code to accept the name of a student and create a dictionary by assigning marks secured 3
by him/her in IP, Science and Social Science subjects as shown below:
IP: 70
Science: 68
Social Science: 65
Display the name of the student along with the total marks and average.

29. Write a Python program for adding, removing elements in the list. 3

30. What is the use of SELECT clause in MySQL? Write an Example of Select Command. 3
Or
Define Data types. What are the different data types available in SQL?

ORANGE EDUCATION 3
Part‐D
31. Write the SQL commands for (i) to (v) on the basis of table Sports. 5
Table Sports
Student Class Name Game 1 Grade 1 Game 2 Grade 2
No
1. 10 Amrit Cricket A Swimming A
2. 12 Neeraj Tennis B Basketball C
3. 10 Rajiv Swimming A Football B
4. 10 Khushbu Tennis C Tennis B
5. 12 Aditi Basketabll A Cricket A
6. 11 Rishi Cricket A Athletics C

(i) Display the names of students who have grade ‘C’ in either Game1 or Game2 or both.
(ii) Display the details of students getting grade ‘A’ in Cricket
(iii) Display the names of the students who have same game for both Game1 and Game2
(iv) Display the games taken up by the students, who name is Rishi.
(v) Add a new column names ‘Marks’.

32. Program that reads three numbers (integers) and prints them in ascending order. 5

33. Write a Python Program to check Triangle is Valid or Not. 5

Part‐E
34. Explain the Following Terms 4
(a) DDL (b) DML (c) DCL (d) TCL

35. Answer the following questions on the basis the given table: 4

Roll_No Name Subject Sex Average


1 Arjun English M 80
2 Aditi Computer F 82
a. How many attributes are there in the above tables?
b. What is the degree of the above table?
c. What is the cardinality of the above table?
d. Name the primary key in the table.

ORANGE EDUCATION 4

You might also like