Class XI Practice Paper
Class XI Practice Paper
General Instructions:
Please check this question paper contains 34 questions.
• The question paper is divided into 5 Sections- A, B, C, D and E.
• Section A, consists of 18 questions (1 to 18). Each question carries 1 Mark.
• Section B, consists of 6 questions (19 to 24). Each question carries 2 Marks.
• Section C, consists of 4 questions (25 to 28). Each question carries 3 Marks.
• Section D, consists of 2 questions (29 to 30). Each question carries 4 Marks.
• Section E, consists of 4 questions (31 to 34). Each question carries 5 Marks.
• All programming questions are to be answered using Python Language only
SECTION - A
1. Interpreter is used as a translator for __________. 1
i. Low level language ii. Python iii. C++ iv. C
3. If a process fails, most operating systems write the error information to a __________. 1
i. New file ii. Another running process iii. Log file iv. None of the above
8. What is Hadoop? 1
i. A programming language for data analysis ii. A database management system
iii. An open-source framework for Big Data processing iv. A data visualization tool
16. How do you check for multiple conditions in a single if statement in python? 1
i. if x > 10 and y < 5: ii. if x > 10 && y < 5:
iii. if (x > 10) && (y < 5): iv. if x > 10 & y < 5:
SECTION – B
20. Write a program to enter a string from user and count number of vowels. 2
SECTION - C
SECTION - D
29. Write a program to enter a string from user and count words in Title case. (Title case means that the first 4
letter of word is capitalize).
30. Write a program to enter a list of elements from user and display all elements having 9 at second last 4
place.
SECTION - E
31. Write a program to generate the sequence: 5, -10, 15, -20, 25….. upto n, where n is an integer input by 5
the user.
32. Write a program to find the product of digits of an integer number, input by the user. 5
33. Write a Program to find prime numbers between 2 to 100 using nested for loop. 5
34. Give the output of the following when num1 = 4, num2 = 3, num3 = 2 5
i) num1 += num2 + num3
print (num1)
ii) num1 = num1 ** (num2 + num3)
print (num1)
iii) num1 **= num2 + num3
iv) print (10 + 6 * 2 ** 2 != 9//4 -3 and 29 >= 29/9)
v) print ((0 < 6) or (not(10 == 6) and (10<0)))
Page 3 of 3