Class 12 Computer Science Chapter 1 Data Structures Using Python Quiz 20 (25 MCQs)

Quiz Instructions

Select an option to see the correct answer instantly.

1. Array is ..... data type.
2. Which of the following is the correct operator to compare two variables?
3. What is the significance of the 'self' parameter in Python class methods?
4. What are the built-in data types in Python?
5. What is the difference between a list comprehension and a generator expression in Python?
6. Which of the following application makes use of a circular linked list?
7. People have used the word ..... to mean computer information that is transmitted or stored.
8. Assertion(A):A stack is a LIFO data structureReason (R):Addition and deletion of items takes place at same end
9. Which of the following is true about a circular queue?
10. One can convert a binary tree to its mirror image by traversing it in
11. What is the time complexity of a program to reverse a linked list?
12. Which of the following highly uses the concept of an array?
13. Describe how to use filter to remove even numbers from a list.
14. Maps in Python are known as dictionaries.
15. How do you access values in a dictionary?
16. Which of the following is NOT a basic data structure?
17. What is a set in Python and how does it differ from a list?
18. What data structure can be used to check if a syntax has balanced paranthesis?
19. LIFO stands for
20. What are the built-in data types available in Python?
21. Types of data structure are .....
22. In ..... data structure data items are not in sequence.
23. After performing these set of operations, what does the final list look contain? InsertFront(10); InsertFront(20); InsertRear(30); DeleteFront(); InsertRear(40); InsertRear(10); DeleteRear(); InsertRear(15); display();
24. Which of the following is true about linked list implementation of stack?
25. In ..... data structure, the data items are arranged in a linear sequence.