Lists
Assam Board · Class 11 · Computer Science
Most important questions from Lists for Assam Board Class 11 Computer Science board exam 2026. MCQs, short answer, and long answer questions with marks.
Interactive on Super Tutor
Studying Lists? Get the full interactive chapter.
Quizzes, flashcards, AI doubt-solver and a step-by-step study plan — built for important questions and more.
1,000+ Class 11 students started this chapter today
Sample Questions
Which of the following are valid ways to create an empty list? (Select all correct answers)
Show answer
list1 = [], list1 = list()
Both [] and list() create empty lists. () creates an empty tuple and {} creates an empty dictionary.
Are lists mutable in Python?
Show answer
True
Lists are mutable in Python, meaning their contents can be changed after creation. You can modify, add, or remove elements.
What will [1, 2, 3] + [4, 5] produce?
Show answer
[1, 2, 3, 4, 5]
The + operator concatenates two lists, joining all elements of the second list to the end of the first list.
Which of the following list methods modify the original list? (Select all correct answers)
Show answer
append(), sort(), remove()
append(), sort(), and remove() modify the original list. count() and index() only return values without changing the list.
+41 more questions available
Practice AllFrequently Asked Questions
What are the important topics in Lists for Assam Board Class 11 Computer Science?
How to score full marks in Lists — Assam Board Class 11 Computer Science?
How many important questions are there in Lists?
Sources & Official References
Content is aligned to the official syllabus. Refer to the board website for the latest curriculum.
More resources for Lists
Syllabus
What topics to cover
Revision Notes
Key points for last-minute revision
Study Plan
Step-by-step plan to ace this chapter
Flashcards
Quick-fire cards for active recall
Formula Sheet
All formulas in one place
Chapter Summary
Understand the chapter at a glance
Practice Quiz
Test yourself with a quick quiz
Concept Maps
See how topics connect visually
NCERT Solutions
Every textbook question solved step by step
For serious students
Get the full Lists chapter — for free.
Quizzes, flashcards, AI doubt-solver and a step-by-step study plan for Assam Board Class 11 Computer Science.