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

Class Xi Ip Term I Sqp3

This document is a question paper for Class XI Informatics Practices, consisting of five sections with a total of 70 marks. Each section includes various types of questions, including multiple-choice, short answer, and programming tasks that must be answered using Python. The paper covers topics such as computer generations, programming concepts, and error types.

Uploaded by

shrishtik567
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)
16 views5 pages

Class Xi Ip Term I Sqp3

This document is a question paper for Class XI Informatics Practices, consisting of five sections with a total of 70 marks. Each section includes various types of questions, including multiple-choice, short answer, and programming tasks that must be answered using Python. The paper covers topics such as computer generations, programming concepts, and error types.

Uploaded by

shrishtik567
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

CLASS:- XI Set:-B FULL MARKS- 70

SUBJECT- INFORMATICS PRACTICES (065) TIME ALLOWED: 3Hrs


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 02 questions carrying 04 marks each.
7. Section E has 03 questions carrying 05 marks each.
8. All programming questions are to be answered using Python Language only

SECTION A
1. Which of the following is not a first generation computer? 1
i. ENIAC
ii. EDVAC
iii. PARAM
iv. EDSAC
2 Seema wants to print a page from the printer connected to her laptop. But when she gives 1
the print command the printer is not visible in the list. What may be the problem?
i. The printer is not turned on
ii. The printer is having some mechanical problem
iii. The driver of the printer is installed
iv. All the above
3. Which of the following is a 1st Generation Computer? 1
i. Turing Machine
ii. Analytical Engine
iii. ENIAC
iv. Intel 8086
4. Neha has joined an organization which uses only Open Source Software. Help him to 1
identify which software he cannot use in his organization.
(i) Python
(ii) Libre Office
(iii)JAVA
(iv) Tally
5. Shilpi is teaching Arithmetic operators in Python. One of her student wrote the following 1
statement: '7'+5 Predict the output of the above mentioned statement:
(i) 75
(ii) 12
(iii)TypeError
(iv) 77777
6. Which of the following is not a data capturing method? 1
i. QR Code Scan
ii. Biometric scan
iii. Screen Touch
iv. Metal detector scan
7. A person wants a software for his store but needs some specific features in the software. 1
What category the software belongs to?
i. General Purpose Software
ii. Special Purpose Software
iii. Customized Software
iv. All the above
Page 1 of 5
8. Working in interactive mode is convenient for executing …………………line(s) of code. 1
i. 1
ii. 2
iii. 3
iv. 4
9. Compiler can execute ……………………….. in one go. 1
i. One line
ii. Two line
iii. 10 lines
iv. Whole program
10. Which of the following is not a keyword? 1
i. for
ii. Break
iii. in
iv. False
11. Choose the correct output- 1
x ,y=10,20
x,y=y,x
print(x,y)
i. 10,20
ii. 20,20
iii. 20,10
iv. 10,10
12. Which of the following is a mutable datatype? 1
i. int
ii. float
iii. dictionary
iv. string
13. Choose the correct output- 1
X=”200.0”
print(type(X))
i. int
ii. float
iii. string
iv. tuple
14. Choose the correct output- 1
X=(12-5)**2//2
i. 25
ii. 24.5
iii. 24
iv. 1
15. Identify the datatype from the declaration – 1
A=(12,45,67,’HelloWorld’)
i. List
ii. Tuple
iii. String
iv. Dictionary
16. Which of the following operator has the highest precedence? 1
i. /
ii. %
iii. **
iv. *
Q17 and 18 are ASSERTION AND REASONING based questions. Mark the correct
choice as
Page 2 of 5
i. Both A and R are true and R is the correct explanation for A
ii. Both A and R are true and R is not the correct explanation for A
iii. A is True but R is False
iv. A is false but R is True
17. Assertion (A):- CPU usages the memory to store the data during the processing. 1
Reasoning (R): - After the processing of the data by the processor it is transferred to the
RAM.
18. Assertion (A):- Finding and fixing of errors in the source code of the program is called 1
debugging.
Reasoning (R): - Runtime errors cause abnormal termination of the program.
SECTION B
19. Differentiate between Primary Memory and Secondary Memory. 2
OR
Differentiate between Generic Software and Specific Purpose Software
20. Name the memory placed between the processor and the RAM. Also give its use. 2
21. Find errors in the following code fragment.(Rewrite the program underlining the 2
correction)
x= int(input(“Enter value of x:”)
for in range [0,10]:
if x=y:
print( x + y)
else:
print( x‐y)
22. What is the be-nefit of using an Open Source Software? Give any two examples of FOSS. 2
23. Choose the valid identifiers from the following- 2
True, Value#1, _num_one, continue, Elif, My Name,
24. Find the errors in the following code fragment (Rewrite the correct program and underline 2
the corrections done)
for i in Range(5):
if i%2==0
print("Even")
else:
print(Odd)
25. Predict the output- 2
S="InDIan"
for i in S:
if i>='A' and i<='M':
print('@',end="#")
else:
print('0',end="#")
SECTION C
26. Write a program in Python to print simple interest and compound interest. 3
OR
Write a program to input a number and check whether it is Prime number or not.
27. (i) Write the logical expression for the following statement- 3
The square of 8 is less than 50 and sum of 12 and 20 is greater than equal to 32
(ii) What is the difference between x=10 and x!=10
(iii) What is output of
print(10%2==0)
28. Write a program in Python to input a 3 digit number and print the sum of its digits. 3
29. X=10 3
Y=10
print(id(X)) #statement 1
print(id(Y)) #statement 2
Page 3 of 5
In the above program if the output of statement 1 is ‘1584967647760’, What will be
output of statement 2 and why?
30. Differentiate between Syntax error and Logical error. How can we know that a runtime 3
error has occurred in the program?
OR
Differentiate between Interactive mode and Script mode. What are the limitations in
working with Interactive mode?
SECTION D
31. (i) Categorize the following as syntax error, logical error or runtime error: 4

(a) 2/0

(b) if=10

if if%2==0:

print(“Even”)

(ii) Convert the given for loop in to while loop

x=20
for i in range(x,100,10):
print(i,end=" ")

32. Give the output of the following expressions- 4


(i) 12 and 10 or 1 and 0
(ii) 5*2**3/2+10
(iii) Write the output of the program
for i in range(10,0,-4):
x=i**3
print("Result for ",i," is ",x)
OR(Option for part iii only)
(i) Write the output of the program
x=0
while True:
x+=1
if x==3:
continue
elif x==6:
break
else:
print(x,end=" ")
SECTION D
33. Match the following- 5

(i) Works as a resource allocator (a) Byte


(ii) Used to transfer data & (b) Interpreter
instructions in the computer
(iii) Responsible for the interface (c) Operating System
between the software and the
hardware
(iv) Smallest unit of memory (d) Bus
(v) Converts high level language to (e) Device driver
machine level language
Page 4 of 5
34. Write a program to calculate the electricity bill as per the number of units given by the 5
user according to the given criteria-

Units Rate
First 100 units Rs. 5 per unit
Next 100 units Rs. 10 per unit
After 200 units Rs. 15 per unit
For example if number of units is 350 the calculation will be

100*5+100*10+150*15=3750

35. Operators are categorized into different types like arithmetic operators, assignment 5
operators etc. Write the category of the operators given below –
(i) ‘a’ in ‘apple’
(ii) 2**4
(iii) X!=10
(iv) X+=5
(v) A>=B

************************

Page 5 of 5

You might also like