Update

Muft Shiksha™ एक 100% Free Education Portal है 🇮🇳, जिसका उद्देश्य Class 9–12 के हर विद्यार्थी तक High-Quality Education को पूरी तरह मुफ्त पहुँचाना है। 🇮🇳 हम मानते हैं कि अच्छी शिक्षा किसी student की आर्थिक स्थिति पर निर्भर नहीं होनी चाहिए। 🇮🇳 हर विद्यार्थी को वही Quality Study Material, MCQs, Quizzes, Exam Preparation, Concept-Based Learning और Bilingual Support मिलना चाहिए, जो आमतौर पर महंगी Coaching या Premium Platforms में मिलता है। Muft Shiksha™ 🇮🇳 इसी सोच के साथ बनाया गया है

Subjects

Computer Science

Lists

सूचियाँ

This Class 11 Computer Science chapter introduces Python lists as ordered, mutable collections used to store and manage multiple values. Students learn how to create lists, access elements through indexing, extract portions with slicing, and traverse items using loops. The chapter also explains updating list contents, applying common methods and built-in functions, and working with nested lists. These concepts help students organise data and develop practical problem-solving skills through structured programs.

1

Introduction to Lists

सूचियों का परिचय

Introduction to Lists is a Class 11 Computer Science topic that explains how lists store multiple values in an ordered, changeable collection. Students learn to create lists, access individual elements through indexing, retrieve groups of elements using slicing, and update, add, or remove data. The topic also introduces common list operations and methods, helping students understand how lists differ from other Python data types and how they support practical data handling in programs.

0 questions
2

List Indexing

सूची अनुक्रमण

In Class 11 Computer Science, List Indexing explains how individual elements are located and accessed within a list using their position. Students learn Python’s zero-based indexing, positive and negative indexes, and how to retrieve or update values without changing the list’s overall structure. The topic also develops an understanding of valid index positions, helps avoid IndexError, and provides a foundation for working confidently with list operations in the Lists chapter.

0 questions
3

List Slicing

सूची के खंड निकालना

In this Class 11 Computer Science topic from the Lists chapter, students learn how to extract selected parts of a Python list using slicing. They explore the syntax start:stop:step, understand that the starting index is included while the stopping index is excluded, and practise using positive and negative indices. The topic also covers omitted bounds, different step values, reversing lists, and creating useful sublists for data processing.

0 questions
4

List Operations

सूची पर संक्रियाएँ

In this Class 11 Computer Science topic from the Lists chapter, students learn how to work with collections of items in Python. They explore indexing and slicing to access selected elements, and use concatenation, repetition, and membership operators to combine or check list data. The topic also introduces practical methods such as append(), insert(), extend(), remove(), pop(), sort(), and reverse(), helping students modify, organize, and process lists in clear, useful programs.

0 questions
5

List Methods

सूची विधियाँ

In this Class 11 Computer Science topic from the Lists chapter, students learn how Python list methods are used to inspect and modify collections of values. They work with common methods such as append(), extend(), insert(), remove(), pop(), index(), count(), sort(), and reverse(), understanding what each method does and how it changes a list. The topic also develops practical skills in writing method calls, tracking list contents, and choosing the appropriate operation for a given problem.

0 questions
6

Nested Lists

नेस्टेड सूचियाँ (सूची के भीतर सूची)

Nested Lists in Class 11 Computer Science extend the idea of Python lists by storing one list inside another. Students learn to create and represent nested data, access individual elements with multiple indexes, traverse inner and outer lists using loops, and modify values safely. The topic connects list operations such as indexing, slicing, and updating with practical structures like tables, marks, or grouped records, helping learners understand how hierarchical data can be organized and processed.

0 questions
7

List Traversal

सूची का क्रमिक संचरण

In this Class 11 Computer Science topic from the chapter “Lists,” students learn how to traverse a list by visiting its elements one at a time in a planned order. They explore traversal using loops, index positions, and direct element access, while understanding how to read, display, search, count, compare, or update list values during the process. Examples help clarify forward traversal, handling different data types, and avoiding common index and boundary errors in Python programs.

0 questions