0% found this document useful (0 votes)
67 views6 pages

Exam IP Class 11 (QP)

This document is a sample question paper for the Informatics Practices subject for Class XI, consisting of 37 compulsory questions divided into five sections with varying mark allocations. The paper covers topics such as programming in Python, database management, and general computer knowledge. It includes multiple-choice questions, programming tasks, and theoretical questions, with specific instructions for answering.
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)
67 views6 pages

Exam IP Class 11 (QP)

This document is a sample question paper for the Informatics Practices subject for Class XI, consisting of 37 compulsory questions divided into five sections with varying mark allocations. The paper covers topics such as programming in Python, database management, and general computer knowledge. It includes multiple-choice questions, programming tasks, and theoretical questions, with specific instructions for answering.
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/ 6

Downloaded from www.tutorialaicsip.

com
INFORMATICS PRACTICES (SUBJECT CODE - 0065)
SAMPLE QUESTION PAPER FOR ANNUAL EXAM
CLASS XI
Max. Time: 3 Hours Max. Marks: 70
General Instructions:
● This question paper contains 37 questions.
● All questions are compulsory. However, internal choices have been provided in some
questions. Attempt only one of the choices in such questions
● The paper is divided into 5 Sections- A, B, C, D and E.
● Section A consists of 21 questions (1 to 21). Each question carries 1 Mark.
● Section B consists of 7 questions (22 to 28). Each question carries 2 Marks.
● Section C consists of 4 questions (29 to 32). Each question carries 3 Marks.
● Section D consists of 2 questions (33 to 34). Each question carries 4 Marks.
● Section E consists of 3 questions (35 to 37). Each question carries 5 Marks.
● All programming questions are to be answered using Python Language only.
● In case of MCQ, text of the correct answer should also be written.
SECTION A: (21 x 1 = 21 Marks)
1. State True or False: To make a computer functional a system software is required.
2. Which of the following is not correct about RAM?
a) It is a type of Primary memory
b) It is a non-volatile memory
c) It saves data temporarily
d) It is faster than secondary memory
3. Which of the following is a general-purpose application software?
a) Web Browser c) Interpreter
b) Text Editor d) Quick Heal
Q4 and Q5 are Assertion(A) and Reason(R) 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
(D) A is False but R is True
4. Assertion(A): Immersive experience can be achieved using virtual reality and
augmented reality.
Reason(R): Immersive experiences allow us to visualize, feel, and react by
stimulating our senses.
5. Assertion(A): Big data can be processed and analyzed easily using traditional data
tools.
Reason(R): Big data sometimes hold rich information and knowledge
6. The ______________ is a network of devices that have embedded hardware and
software to communicate with other devices on the same network.

Page 1 of 6
Downloaded from www.tutorialaicsip.com
7. State True or False – The Python interpreter is also known as Python Shell.
8. The symbol >>> known as Python Prompt indicates
a) Python program is completed c) The program has some errors
b) Interpreter is ready to receive d) The interpreter is ready to save the
instructions program
9. Identify one rule to define an identifier:
a) The Identifier can be the same as any keyword
b) The Identifier can use any special character
c) The Identifier cannot start with a number
d) The Identifier can have a space
10. The leading white space at the beginning of a statement is called _____________.
11. What will the output be: 3 % 8 + 8 < 25 and 25<=25?
12. Recognize the correct statement in the context of a Python list:
L = [44,55,66,77]
a) L + 3 b) L * ‘3’ c) L * 3 d) L + (3)
13. Ritika wants to sort a list inplace. Suggest a function to fulfil her needs.
14. What will be the output of the following code:
D={‘S. Samson’:7,’A. Sharma’:17,’S. Yadav’:14,’T. Verma’:22}
print(len(D))
a) 4 b) 8 c) 1 d) 3
15. Kajal has created a dictionary and she is trying to access dictionary items through
traversing in a for loop. Her code is as follows:
D={'Sanjana':95,'Twisha':89,'Avni':92,'Mahek':85}
for I in D:
print(I, D[i])
Observe these statements:
I. I refer to the key of a dictionary
II. D[i] represents a value
III. I refer to the position of an element like 0,1,2,3 and so on
IV. D[i] represents each key:value pair
a) I and II are correct c) I and III are correct
b) III and IV are correct d) II and IV are correct
16. Which of the following is not a DBMS software?
a) MS Access b) MySQL c) PageMaker d) PostgreSQL
17. Identify the correct statement about database schema:
a) The design of a database
b) Restrictions applied to data
c) Data about data
d) Request to a database for obtaining information

Page 2 of 6
Downloaded from www.tutorialaicsip.com
18. State True or False: SQL can be used to perform select queries only.
19. Which command is used to reduce the cardinality of a table?
a) Delete b) Alter c) Update d) Modify
20. Which of the following clauses is used to apply criteria for retrieving data?
a) Select b) Where c) Order by d) Group by
21. Which of the following operators works on a set of values?
a) is b) in c) like d) between
SECTION B: (7 x 2 = 14 Marks)
22. A) Convert the following memory units as directed:
i. 300 MB = ________ KB iii. 5 TB = ________ EB
ii. 4.5 GB = ________ Bytes iv. 100 Nibbles = _______ Bytes
OR
B) What do you mean by browser? Name any two most popular browsers.
23. A) Who was the developer of Python? When python was developed? Write any two
areas where Python is used.
OR
B) Differentiate between statements and comments used in Python.
24. Evaluate the expression: 15.0 // 4.0 + (8 + 3.0)
25. A) Write any four real-life applications where the database is used.
OR
B) Elaborate these terms:
i. Database Engine ii. Database Instance
26. A table has 7 rows and 4 columns. What is the degree and cardinality of this table?
27. Write the create table command for the given table structure:
Table Name: matches
Column Name Datatype & Size Constraint
MatchID Int(4) Primary key
Venue Varchar(20) Not null
Date Date
Team1 Varchar(20)
Team2 Varchar(20)
Winner Varchar(20)
Audience int(8)
28. Match the following:
A B
1. Constraint A. Drop
2. DML Command B. _
3. DDL Command C. Delete
4. Wildcard D. Default
SECTION C: (4 x 3 = 12 Marks)
29. A) What do you mean by proprietary software? Illustrate your answer with an
example. How does it differ from freeware?
OR
Page 3 of 6
Downloaded from www.tutorialaicsip.com
B) Write any 3 characteristics of big data and explain them in short.
30. A) Observe the given table named school_data and answer the below given
questions:

Admno Name Class House Percent Contact Dob

20150001 Aditya Das 10 Green 86 234596 2006-02-20

20140212 Harsh Sharma 11 Red 75 224455 2004-10-05

20090234 Swapnil Pant 10 Yellow 84 113388 2005-11-21

20130216 Soumen Rao 9 Red 91 243685 2006-04-10

20190227 Rahil Arora 10 Blue 70 365478 2005-05-14

20120200 Akasha Singh 11 Red 64 124587 2004-12-16

i. Identify the candidate keys.


ii. Identify the primary key.
iii. Identify the alternate keys.
OR
B) What are the three important properties of relation?
31. Name the command to do the following in MySQL:
i. Create a database named PT4
ii. Open a database to work
iii. Get the list of existing database
32. Write commands to do the following in MySQL:
i. Add a column named remarks with varchar datatype with length of 30 in the
existing table students
ii. Rename a column sal to salary in the table emp
iii. Modify the column ename with varchar(40) in the table emp
SECTION D: (2 x 4 = 8 Marks)
33. A) Priya has been tasked to complete a program to check whether the number is
palindrome. She has written partial code. Assist her in completing the given code by
filling in the statements.
n = ____________ #Statement 1 – Enter the number to check palindrome
r=0
t=n
__________: #Statement 2 – A condition to check no is not zero
r = (n%10) + (r*10)
n//=10
________: #Statement 3 – A condition to check n and reverse number equal
____________ #Statement 4 – Display the appropriate message
Page 4 of 6
Downloaded from www.tutorialaicsip.com
OR
B) Consider a list - l=[21,43,65,87,9]. Write statements to do the following:
i. To insert 99 at 3rd position
ii. Add multiple values 44,55,66 at the end of the list
iii. Remove the value 65
iv. Display the values at even position
34. A) Consider the dictionary given below:
D={‘Gujarat’:’Ghandhinagar’,’Rajasthan’:’Jaipur’,’Maharashtra’:’Mumbai’}
Write statements to do the following:
i. Get a list of all keys
ii. Display the number of items present in the dictionary
iii. To check whether the state Punjab does exist or not in the dictionary
iv. Delete the state Rajasthan
OR
B) Mr. Rahul is a placement head in a reputed engineering institute and has created
the following table to store the records of students getting placement in various
companies :
Table : Placement

Compid Company Vacancies Appeared Department DoJ City

CP01 Rising Star 20 300 Networking 2020-07-02 Bengaluru

CP02 Smoke Ring 30 350 Web Development 2019-07-12 Chennai

CP03 Pilot 15 421 Cloud 2020-08-12 Bengaluru

CP04 Jingle 10 145 Servers 2019-01-23 Hyderabad

CP05 Neel Zone 17 568 Data Analytics 2018-09-02 Bengaluru

CP06 Hard Talk 12 276 Marketing 2020-07-02 Hyderabad

Based on the given table, write SQL queries for performing the following tasks :
(i) To list names of those companies containing departments Marketing or Networking.
(ii) To display the details of placements where vacancies in the range of 15 to 30 and
candidates have appeared in the range of 300 to 500
Mr. Rahul has written the following queries. Write the output of each query :
(iii) SELECT company, appeared, department FROM Placement where vacancies >=20;
(iv) SELECT Company FROM Placement WHERE company like ‘%r%’
AND city = ’Bengaluru’;
SECTION E: (3 x 5 = 15 Marks)
35. Write a program to accept a number and display its factorial.
36. A) Write a program to find the largest and the second largest elements from the
list.
OR
B) Write a program to accept “Exam2025” and form a dictionary that contains a
character as a key and the first occurrence of that key as a value.
Page 5 of 6
Downloaded from www.tutorialaicsip.com
37. Consider the following table – faculty:
Table – Faculty

F_Id FacName DoJ Qualification Salary

Emp01 Neeta 2013-07-01 MCA 85000

Emp02 Sonia 2023-05-05 MA null

Emp03 Sheetal 2015-06-28 MSc 90000

Emp04 Bindu 2016-03-30 M.Com 80000

Emp05 Sunidhi 2002-06-28 BA null

Emp06 Ashish 1999-07-01 B.Com 70000

(i) Display name and salary of all faculties in alphabetical order of their names.
(ii) Display details of faculties who joined in the 6th month.
(iii) Display names of faculties, their salary whose names is 5 letters long
(iv) Display the details of all faculties whose salary is more than 60000 and have joined
before the year 2007.
(v) Display the name, and qualification of the faculties whose salaries are not defined

Page 6 of 6

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy