The document is a unit test for Class XI Computer Science with Python, consisting of multiple-choice questions, true/false statements, and programming tasks. It covers topics such as memory types, Python keywords, and basic programming concepts. The test has a total duration of 1.5 hours and a maximum score of 40 marks.
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
5 views
11th Sc UT 2 Python 2023-24
The document is a unit test for Class XI Computer Science with Python, consisting of multiple-choice questions, true/false statements, and programming tasks. It covers topics such as memory types, Python keywords, and basic programming concepts. The test has a total duration of 1.5 hours and a maximum score of 40 marks.
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2
JAWAHAR NAVODAYA VIDYALAYA MULTHAN DHAR
UNIT TEST – 2 COMPUTER SCIENCE WITH PYTHON TIME : 1:30 HOURS CLASS XI MAXIMUM MARKS 40
Instructions: All questions are compulsory.
All mcqs are 01 mark each.
1. A disk fragmentor is an example of 6. To give a different separator with
a) Application Software print() .......... argument is used. b) System Software a) sep c) Utility Program b) separator d) None of these c) end d) tab 2. Which of the following components is the main memory of computer? 7. Select the reserved keyword in Python. a) CD a) else b) DVD b) import c) Internal Hard Drive c) print d) RAM d) all of these
3. The CPU is known as 8. Data items having fixed value are
a) The Brain called ........... b) The Processor a) identifiers c) The Central Processing Unit b) functions d) All of these c) keywords d) literals 4. Which of the following memory types will store the data permanently? 9. Which of the following is/are correct ways of a) RAM creating strings? b) Cache a) name = Jiya c) Flash Memory b) name = ‘Jiya’ d) Hard Disk c) name = ‘Jiya” d) name = (Jiya) 5. Flash Memory is a type of ........... memory. a) primary 10. Which of the following can be used to b) RAM create comments? c) secondary a) // d) all of these b) # c) ‘’’ d) ‘’’......’’
11. Language processors are a type of application software. (True/False) 1Mark
12. A Computer System consists of both hardware and software. (True/False) 1Mark 13. 0x12EFG is a legal literal value in Python. (True/False) 1Mark 14. The identifiers in Python can begin with an underscore. (True/False) 1Mark 15 Expressions contain values/variables along with operators. (True/False) 1Mark
Q.17- What is the difference between RAM and ROM. 2Mark
Q.18- What is the difference between Compiler and Interpreter. 2Mark Q.19- State the basic units of the computer. Name the subunits that make up the CPU, and give the function of each of the units. 3Mark Q.20- Define System Software and its type. 3Mark Q.21- Write a Python Program to input a value in kilometres and convert it into miles. 3Mark ( 1 km = 0.621371 miles) Q.22- Write a Python Program to input a number and print its cube. 3Mark Q.23- Define Keywords, Identifiers, Literals and Punctuators. 4Mark Q.24- How many types of strings are supported in Python? Describe them with examples. 3Mark Q.25- What will be the output of the following code? 2Mark x, y = 2, 6 x, y = y, x+2 print (x,y)