Skip to main content
Chapter 9 of 11
Practice Quiz

Lists

Jharkhand Board · Class 11 · Computer Science

Practice quiz for Lists — Jharkhand Board Class 11 Computer Science. MCQs and questions with answers to test your preparation.

45 questions22 flashcards5 concepts

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 practice quiz and more.

1,000+ Class 11 students started this chapter today

Quick Quiz: Lists

0/4

Tap an answer to check it instantly. No sign-up needed for these 4.

1

Which symbol is used to create a list in Python?

2

What will be the output of list1[2] if list1 = [10, 20, 30, 40, 50]?

3

What does the len() function return when applied to a list?

4

Which method is used to add an element at the end of a list?

45 Questions·
multiple choicemultiple correcttrue false

Sample Questions

1multiple correct

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.

2true false

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.

3multiple choice

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.

4multiple correct

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 All

Frequently Asked Questions

What are the important topics in Lists for Jharkhand Board Class 11 Computer Science?
Lists covers several key topics that are frequently asked in Jharkhand Board Class 11 board exams. Focus on the core concepts listed on this page and practise related questions to build confidence.
How to score full marks in Lists — Jharkhand Board Class 11 Computer Science?
Understand the core concepts first, then work through the 45 practice questions available for this chapter. Revise formulas and definitions regularly, and use flashcards for quick recall before the exam.

Sources & Official References

Content is aligned to the official syllabus. Refer to the board website for the latest curriculum.

For serious students

Get the full Lists chapter — for free.

Quizzes, flashcards, AI doubt-solver and a step-by-step study plan for Jharkhand Board Class 11 Computer Science.