0% found this document useful (0 votes)
38 views

Suguna Pip School, Coimbatore (A CBSE Affiliated SR - Sec.School) Informatics Practices Grade Xi Revision Term1 Worksheet - 1

1. The document is a worksheet with 10 multiple choice questions about integrated circuits, generations of computers, Python functions, data types, and lists. 2. The questions cover topics like the relationship between integrated circuits and computer generations, the chief component of first generation computers, Python functions like range and print, valid Python identifiers, indexing dictionaries, and using the pop method on lists. 3. The worksheet is assessing knowledge of foundational computer science and Python programming concepts through multiple choice review questions.

Uploaded by

SHARVESH S
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
38 views

Suguna Pip School, Coimbatore (A CBSE Affiliated SR - Sec.School) Informatics Practices Grade Xi Revision Term1 Worksheet - 1

1. The document is a worksheet with 10 multiple choice questions about integrated circuits, generations of computers, Python functions, data types, and lists. 2. The questions cover topics like the relationship between integrated circuits and computer generations, the chief component of first generation computers, Python functions like range and print, valid Python identifiers, indexing dictionaries, and using the pop method on lists. 3. The worksheet is assessing knowledge of foundational computer science and Python programming concepts through multiple choice review questions.

Uploaded by

SHARVESH S
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

SUGUNA PIP SCHOOL, COIMBATORE

(A CBSE affiliated Sr.Sec.School)


INFORMATICS PRACTICES
GRADE XI
REVISION TERM1
Worksheet -1

1. Integrated Circuits (Ics) are related to which generation of computers?


A. First generation
B. Second generation
C. Third generation
D. Fourth generation

2. Chief component of first generation computer was


A. Transistors
B. Vacuum Tubes
C. Integrated Circuits
D. Microprocessors

3. The statements getting executed in the form of top to bottom, is known


_____ as construct.

A. selection
B. repetition
C. sequence
D. flow

4. Function range(0, 6, 2) will yield on iterable sequence like

A. [0, 2, 4]
B. [1, 3, 5]
C. [0, 2, 4, 6]
D. [0, 6, 2]

5. Which of the following is invalid identifier


A. a1b2c
B. 1a2b3
C. a_b_c
D. _a_b_

6. What does Python print as a result of this statement?


print(6+5%8)

A. 11
B. 12
C. Error
D. 3

7. Predict the output of the following code?


z = 13 + 13 // 10
A. 14.3
B. 14.0
C. 16
D. 14

8. The following code is executed


y = int(input("Enter x: ") + 1)
In response to the prompt the user enters 50
What is the resulting value of y?
A. ’50 + 1’
B. 51
C. 50
D. This produces an error.

9. What will be the output of above Python code?


d1={"value1":5,"value2":6,"value3":7}
print(d1[0])

A. value1
B. 5
C. {"value1":5}
D. Error

10. What will be the result after the execution of above Python code?
list1=[3,2,5,7,3,6]
list1.pop(3)
print(list1)

A. [3,2,5,3,6]
B. [2,5,7,3,6]
C. [2,5,7,6]
D. [3,2,5,7,3,6]

You might also like