Home > Python > Quizzes > CBSE Class 11 Introduction to Python Practice Test
CBSE Class 11 Introduction to Python Practice Test
Fast practice, instant feedback. Timer auto-submits when time’s up.
Avg score: 21% Most missed: “Which of the following is not a token?”

Python is a general-purpose advanced level programming language used by developers for data analysis, web development, and machine learning. It is an object-oriented programming language with built-in data structures and dynamic typing and binding.

Python programs are easy to understand as they have a clearly defined syntax and relatively simple structure.

Python is case-sensitive . For example, NUMBER and number are not the same in Python.

Python is portable and platform independent, meaning it can run on various operating systems and hardware platforms.

CBSE Class 11 Introduction to Python Practice Test
Time left 00:00
25 Questions

1. Which of the following is not in Python Character Set.
2. Which of the following statement will return error when x = 7 ?
3. Which method is used to find the memory location of variable?
4. Which statement will display square of number (n)
5. Write the output of the following code :
>>> a=9
>>> x=str(a)
>>> b=5
>>> y=str(b)
>>> x+y
6. Each statement in python is terminated by ___________
7. Which of the following is not the feature of python language?
8. return statement is mandatory in function definition.
9. What will be the data type of the following variable?A = ‘101’
10. Python uses _________________ function to output data to standard output device.
11. print(“I” + “am” + “in” + “school”) display __________________
12. Which of the following is a sequence data type?
13. Comments in python program are ________________ by interpreter
14. An ordered set of instructions to be executed by a computer to carry out a specific task is called _______
15. Python is case sensitive.
16. Write the output of the following:
print(range(0,8,2))
17. Which of the following is number data type in python?
18. The smallest individual unit in a program is known as _______
19. Which keyword is used to define a function in python?
20. ______________ happens when data type conversion is done automatically by Python.
21. >>> 14 + 2 ** 2 evaluates to _________________
22. Write the output of the following :

>>> num1 = 7:
>>> num2 = 3:
>>> num1 //= num2:
>>> num1
23. Which of the following statement is wrong?
24. Write the output of the following :

>>> a = 'India':
>>> a *= 3:
>>> a
25. Identifier name can be of maximum ____________ character