0% found this document useful (0 votes)
43 views4 pages

XI Annual IP 22-23

This document is a retest question paper for Class XI students at Army Public School, Patiala, focusing on Informatics Practices. It includes five sections with various types of questions, including multiple-choice, short answer, and programming tasks, primarily using Python. The paper covers topics such as computer hardware, software, SQL commands, and programming concepts.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
43 views4 pages

XI Annual IP 22-23

This document is a retest question paper for Class XI students at Army Public School, Patiala, focusing on Informatics Practices. It includes five sections with various types of questions, including multiple-choice, short answer, and programming tasks, primarily using Python. The paper covers topics such as computer hardware, software, SQL commands, and programming concepts.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

ARMY PUBLIC SCHOOL, PATIALA

RETEST – 2022-23
CLASS – XI
SUBJECT-INFORMATICS PRACTICES
Time Allowed : 3 Hrs MM - 70
General Instructions:
1. This question paper contains five sections, Section A to E.
2. All questions are compulsory.
3. Section A have 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.

Section-A
1 Which of the following is referred to as the brain of computer? 1
a) CPU b) RAM c) ROM d)Hard Drive
2 Which of the following is an input device? 1
a) Monitor b) Printer c) Hard Disk d) Joy Stick
3 What are the different types of computer storage devices __________. 1
a) Primary Memory b) Secondary Memory
c) Both a) and b) d) None of the above
4 What type of device is a computer printer? 1
a) Input b) Output c) Software d) Storage
5 _______________ is a tailor made software according to user’s requirement. 1
a) Application Software b) System Software
c) Utility Software d) Customized Software
6 Suppose list1 is [1, 3, 2], What is list1 * 2 ? 1
a) [2, 6, 4]. b) [1, 3, 2, 1, 3]. c) [1, 3, 2, 1, 3, 2] . d) [1, 3, 2, 3, 2, 1].
7 Which of the following is invalid identifier? 1
a) Abc123 b) 123abc c) abc123 d) A1b2c3
8 If step value is not specified for range() function, the default value of step is 1
a) 0 b) 1 c) -1 d) None
9 Consider the given list: L=[‘Delhi’,’Mumbai’,’Kolkata’,’Chennai’], What L[3:2] returns? 1
a) Empty List b) [‘Chennai’] c) [‘Chennai’,’Kolkata’] d) [‘Kolkata’,’Chennai’]
10 Consider the given dictionary? 1
d={‘Ahmedabad’:’Gujarat’,’Mumbai’:’Maharasthra’,’Indore’:’Madhya Pradesh’}
What will be the output of
print(d.get(‘Indore’))
a) Error b) Madhya Pradesh c) 2 d) Indore
11 Which of the following is not RBDMS software? 1
a) Oracle b) MS Excel c) MySQL d) MS Access
12 Which statement is used to extract data from a table? 1
a) SELECT b) DISPLAY c) READ d) EXTRACT
13 The SQL statements ends with 1
a) , b) : c) ; d) “
14 Shiv wants to see the table structure in MySQL. Select an appropriate command to help him. 1
a) use b) show c) desc d) display
15 Sahil wants to delete records from the table. Select an appropriate command which help him. a) 1
Create b) Alter c) Drop d) Delete
16 Which statement is used to insert new data in a table? 1
a) ADD RECORD b) INSERT RECORD c) INSERT INTO d) INSERT ROW
17 _________ is a network of devices that have embedded hardware and software to 1
communicate with other devices on the same network:
a) Social Network b) Web c) Internet d) IoT
18 Which is not one of the features of IoT devices? 1
a) Remotely controllable b) Programmable
c) Can turn themselves off if necessary d) All of the above
Section-B
19 What is the need of RAM? How does it differ from ROM? 2
20 Write a program to accept points in CCA activities, Projects and Discipline. Find the average. 2
OR
Identify python data type of the given variables and values:
i. a=’hello’ ii. marks=80.75 iii. found=True iv. l=[3,7,8,2]
21 Do as directed: 2
i. Assign 5 to a variable x.
ii. ii. Write statement to compute the square of given number.
22 What are identifiers? Write 2 identifier naming conventions. 2
23 Define the following: i. Attribute ii. Cardinality iii. Degree iv. Tuple 2
24 Harshiv is working as Database Administrator in 5 star data solutions pvt. Ltd. He wants to do 2
the following, suggest him commands to accomplish his task:
a) He wants list all the table names present in a database
b) He wants activate a particular database
25 Rewrite the following code in Python after removing all syntax error(s) : 2
Underline each correction done in the code.
Runs = [ 10, 5, 0, 2, 4, 3])
for I in Runs:
if I=0:
print(Maiden Over)
Else
print(Not Maiden)
Section- C
26 Differentiate between Augmented Reality and Virtual Reality. 3
27 Name 2 categories of sql commands. Give 2 commands in each category. 3
28 i. Which datatype in mysql is used to store date? What is the format of 3
entering date?
ii. What is the difference between char and varchar data type?
29 Draw the block diagram of a computer system. Briefly write about the functionality of each 3
component.
30 Write a program to find sum of odd numbers between 2 numbers start and stop using 3
for loop.
or
i. Write a program to get n numbers from user and count total even numbers
entered
ii.

Section-D
31 Consider the following table library and write the queries i to v 5
i) display details of table library.
ii) Display names and price of book with price in range 200 to 300 (both values
included)
iii) Display Names and authors of books of bpb and Mcgraw pub.
iv) Display details of books whose author name starts ends with “t”
v) Insert the following record into the table
11, “Let us c”, “Yashwant”, “prog”, “Galgoria”, 3, 500
32 i. Write a sql query to create a database named abceventcompany.
.
ii. Write a sql query to activate database abceventcompany
iii. 5

33 Consider the following dictionary: 5


od={1:’One’,3:’Three’,5:’Five’,7:’Seven’,9:’Nine’}
Perform the below mentioned operations in the dictionary:
i. Write commands to display only keys.
ii. Write command to print the corresponding value to the key 7
iii. Write command to display number of elements
iv. Add a new element with 11 as key and “Eleven” as value
v. Od1={13: “Thirteen”, 15: “Fifteen”}
Write command to merge od1 with od
or
Write a program to create a dictionary with rollno, name and marks of n no. of students and
display names of students who have scored more than 90 marks in any subject.

Section-E
34 4
(c) Write a query to display details of students with percentage more than 80.
(d) What datatype you suggest for column grade? Give reason.
35 i. Differentiate between following with example: 4
a) append() and extend()
b) sort() and sorted()
ii. Find the output of following:
colors=["violet", "indigo", "blue", "green", "yellow", "orange", "red"]
del colors[4]
colors.remove("blue")
colors.pop(3)
print(colors)

You might also like