NCERT Class 11 Computer Science Computer Science: Chapter 9 — Lists

NCERT CBSE Class 11 Computer Science Computer Science Chapter 9 English PDF

This chapter introduces the concept of Lists in Python, a fundamental data structure. It defines a list as an ordered, mutable sequence that can contain elements of various data types, enclosed in square brackets and separated by commas. The chapter explains how list indices start from 0, similar to strings, and demonstrates accessing elements using positive and negative indices. It highlights the mutability of lists, allowing their contents to be modified after creation. The text also introduces list operations, starting with concatenation using the '+' operator to combine lists. This chapter is crucial for Class 11 Computer Science students to understand data organization and manipulation in Python programming.

Quick info

BoardCBSE / NCERT
ClassClass 11
SubjectComputer Science
BookComputer Science
ChapterChapter 9 — Lists
LanguageEnglish
PDF typeNCERT Textbook
SessionCBSE 2026
Reading time3 minutes
Word count457

Learning outcomes

Vocabulary

WordMeaning
ListAn ordered, mutable sequence of elements, enclosed in square brackets.
MutableCapable of being changed or altered after creation.
Ordered sequenceElements are arranged in a specific order and can be accessed by their position.
ElementsIndividual items within a list.
Data typesCategories of data, such as integer, float, string, etc.
IndicesThe position of an element in a list, starting from 0.
ConcatenationThe operation of joining two or more lists together.
Nested listA list that contains other lists as its elements.

The complete chapter text is read in the official NCERT PDF viewer below (streamed from ncert.nic.in). This page provides NCERT Help study material — summary, vocabulary, practice questions, and FAQs — not a full reproduction of the textbook.

Read chapter online

This PDF is loaded from the official NCERT website (ncert.nic.in). Use the page buttons below to read — download is disabled on NCERT Help.

Read page by page below. PDF is streamed from the official NCERT website — no download button on this page.

Loading document …
Page of
Loading page …

Practice questions

  1. What is a list in Python? Answer: A list is an ordered, mutable sequence that can contain elements of different data types.
  2. How are elements in a list accessed? Answer: Elements are accessed using indices, starting from 0 for the first element.
  3. What does it mean for a list to be mutable? Answer: It means the contents of the list can be changed after it has been created.
  4. What operator is used for list concatenation? Answer: The '+' operator is used for list concatenation.

Frequently asked questions

What is the primary characteristic of a Python list?

A Python list is an ordered, mutable sequence that can hold elements of various data types.

Can a list contain elements of different data types?

Yes, unlike strings, lists can contain elements of mixed data types like integers, floats, strings, and even other lists.

How do you access elements in a list?

Elements are accessed using their index, which starts from 0 for the first element. Negative indices can be used to access elements from the end.

What does 'mutable' mean in the context of lists?

Mutable means that the elements within a list can be changed, added, or removed after the list has been created.

How can you combine two lists in Python?

You can combine two lists using the concatenation operator '+', which joins the elements of the second list to the end of the first.

What is a nested list?

A nested list is a list that contains other lists as its elements.

Related resources

Important topics

Introduction to List Accessing List Elements Lists are Mutable Concatenation

Topics covered

Introduction to List List Properties (Ordered, Mutable) Mixed Data Types in Lists Nested Lists Accessing List Elements List Indexing (Positive and Negative) Mutability of Lists List Operations Concatenation

NCERT Class 11 Computer Science — Computer Science — Chapter 9 — Lists. Verified by NCERT Help Editorial Team. Reviewed on 29 Jul 2026. Last updated 10 Aug 2026.