Complete Summary and Solutions for Working with Lists and Dictionaries – NCERT Class XI Informatics Practices, Chapter 4 – Explanation, Questions, Answers Detailed summary and explanation of Chapter 4 'Working with Lists and Dictionaries' from the NCERT Informatics Practices textbook for Class XI, covering the concepts of lists and dictionaries in Python, list operations such as indexing, slicing, appending, inserting, removing, sorting, and copying, dictionary creation, accessing and modifying dictionary elements, key-value pairs, built-in functions and methods for lists and dictionaries, and practical examples and exercises with solutions. Updated: 8 months ago
Categories: NCERT, Class XI, Informatics Practices, Chapter 4, Python, Lists, Dictionaries, Summary, Questions, Answers, Programming, Data Structures
Tags: Lists, Dictionaries, Python, Informatics Practices, NCERT, Class 11, Data Structures, Collections, Summary, Explanation, Questions, Answers, Chapter 4
Working with Lists and Dictionaries - Class 11 Informatics Practices Chapter 4 Ultimate Study Guide 2025
Full Chapter Summary & Detailed Notes
Key Definitions & Terms
Text Book Questions & Answers
Key Concepts
Historical Perspectives
Solved Examples
Interactive Quiz (10 Q)
Quick Revision Notes & Mnemonics
Key Terms & Processes
Processes Step-by-Step
Full Chapter Summary & Detailed Notes - Working with Lists and Dictionaries Class 11 NCERT
Overview & Key Concepts
Chapter Goal : Master mutable sequences (lists) and key-value mappings (dictionaries) in Python. Exam Focus: Operations, methods (e.g., append, extend), traversal, manipulation programs; 2025 Updates: Nested structures, dict comprehensions. Fun Fact: Aho-Ullman quote on abstraction. Core Idea: Lists for ordered data, dicts for fast lookups. Real-World: Shopping carts (lists), user profiles (dicts).
Wider Scope : From creation/access to advanced methods; sources: Examples (4.1-4.4), Table 4.1 methods, Program 4-1 menu-driven. Activities: Code traversal, dict updates.
Expanded Content : Include slicing tricks, dict traversal; point-wise for recall; add 2025 relevance like JSON handling.
Introduction to Lists
Definition : Ordered, mutable sequence of mixed types in [ ]. Ex: [2,4,6], ['a','e'], [100,23.5,'Hello'], nested [['Physics',101]].
Accessing : Index [0] first, [-1] last; len() for size. Ex: list1[3] → 8.
Mutable : Change via index. Ex: list1[3]='Black'.
Expanded : Evidence: Error on out-of-range; negative indices from end.
Conceptual Diagram: List Indexing (In-Text Box)
Visual: list1 = [2,4,6,8,10,12] → indices 0 to 5, -1 to -6. Shows forward/backward access.
Why This Guide Stands Out
Comprehensive: All ops/methods with code; 2025 with error handling, analyzed for programs.
List Operations
Concatenation (+) : Join lists. Ex: [1,3,5]+[2,4,6] → [1,3,5,2,4,6]. No change originals; assign for new.
Repetition (*) : Replicate. Ex: ['Hello']*4 → ['Hello','Hello','Hello','Hello'].
Membership (in/not in) : Check presence. Ex: 'Green' in list1 → True.
Slicing [start:end:step] : Sub-list. Ex: list1[2:6] → elements 2-5; [::2] every second; [::-1] reverse.
Expanded : Evidence: TypeError on non-list +; empty slice [].
Traversing a List
For Loop : for item in list1: print(item). Direct elements.
Range Loop : for i in range(len(list1)): print(list1[i]). Index-based.
Expanded : Evidence: len() returns count; range(0,n-1).
List Methods and Built-in Functions
Table 4.1 Highlights : len(), list(), append(), extend(), insert(), count(), index(), remove(), pop(), reverse(), sort(), sorted(), min(), max(), sum().
Ex : append(50) adds end; extend([40,50]) adds each; sort(reverse=True) descending.
Expanded : Evidence: pop() removes/returns; sorted() new list, sort() in-place.
List Manipulation
Program 4-1 : Menu-driven ops (1-9: append to display). Uses if-elif for choices, eval/input.
Expanded : Evidence: Error checks (position < len); myList=[22,4,16,38,13].
Introduction to Dictionaries
Definition : Unordered key-value pairs in {key:value}. Mutable, unique keys. Ex: {'Name':'Amit','Age':20}.
Access : dict['key']; add/update dict['new']=val.
Expanded : From later pages: Traversal (keys(), values(), items()), methods (get(), pop(), update()).
Summary Key Points
Lists: Mutable [ ], ops (+/*), methods (append/sort), traverse for/range.
Dicts: {key:val}, access/update, traverse keys/items.
Impact: Data grouping/manipulation; challenges: Index errors, key duplicates.
Project & Group Ideas
Group: Inventory list/dict simulator; individual: Menu program extension.
Debate: Lists vs tuples (mutable vs immutable).
Ethical role-play: Data privacy in dicts.
Key Definitions & Terms - Complete Glossary
All terms from chapter; detailed with examples, relevance. Expanded: 30+ terms grouped by subtopic; added advanced like "Nested List", "Dict Comprehension" for depth/easy flashcards. Table overflow fixed with word-break.
List
Ordered mutable sequence. Ex: [2,4,6]. Relevance: Mixed types.
Index
Position starting 0/-1. Ex: list1[0]=2. Relevance: Access.
Mutable
Changeable after creation. Ex: list1[3]='Black'. Relevance: Dynamic.
Concatenation
Join with +. Ex: [1,3]+[2,4]. Relevance: Merge.
Slicing
Sub-list [start:end:step]. Ex: [2:6]. Relevance: Extract.
Traversal
Access each element. Ex: for item in list. Relevance: Loop.
Append
Add end. Ex: append(50). Relevance: Grow list.
Extend
Add multiple. Ex: extend([40,50]). Relevance: Merge lists.
Dictionary
Key-value pairs. Ex: {'A':1}. Relevance: Mapping.
Key
Unique identifier. Ex: 'Name'. Relevance: Access.
Nested List
List in list. Ex: [['Physics',101]]. Relevance: 2D.
Len
Length. Ex: len(list1)=6. Relevance: Size.
Repetition
Replicate *. Ex: ['Hi']*3. Relevance: Duplicate.
Membership
in/not in. Ex: 'a' in vowels. Relevance: Check.
Insert
Add at index. Ex: insert(2,25). Relevance: Position.
Pop
Remove/return. Ex: pop(3)=40. Relevance: Extract.
Sort
In-place order. Ex: sort(reverse=True). Relevance: Arrange.
Sorted
New ordered list. Ex: sorted(list1). Relevance: Non-mutating.
Dict Comprehension
Advanced: {k:v for k,v in items}. Ex: {x:x**2 for x in range(5)}. Relevance: 2025 concise.
Keys
Dict keys view. Ex: dict.keys(). Relevance: Traverse.
Values
Dict values. Ex: dict.values(). Relevance: Data.
Items
Key-value pairs. Ex: for k,v in dict.items(). Relevance: Loop.
Get
Safe access. Ex: dict.get('key',default). Relevance: No error.
Update
Merge dicts. Ex: dict1.update(dict2). Relevance: Combine.
IndexError
Out of range. Ex: list1[15]. Relevance: Bounds check.
ValueError
Not found. Ex: remove(90). Relevance: Existence.
TypeError
Wrong type. Ex: list + str. Relevance: Compatibility.
Range
Sequence gen. Ex: range(len(list)). Relevance: Indices.
Nested Dict
Dict in dict. Ex: {'user':{'name':'Amit'}}. Relevance: Complex data.
Count
Occurrences. Ex: count(10)=3. Relevance: Frequency.
Index
First position. Ex: index(20)=1. Relevance: Locate.
Remove
Delete value. Ex: remove(30). Relevance: Cleanup.
Reverse
Order flip. Ex: reverse(). Relevance: Backward.
Min/Max
Smallest/largest. Ex: min(list1)=12. Relevance: Extremes.
Sum
Total. Ex: sum(list1)=284. Relevance: Aggregate.
Tip: Group by list/dict; examples for recall. Depth: Errors (e.g., IndexError). Interlinks: To Ch3 strings. Advanced: Comprehensions. Real-Life: API responses (dicts). Graphs: Method table. Coherent: Evidence → Interpretation. For easy learning: Flashcard per term with code.
Text Book Questions & Answers - NCERT Exercises
Direct from chapter exercises (assumed based on content). Answers point-wise for exams.
Short Answer Questions
1. What is a list? How is it different from a string?
Answer:
List: Ordered mutable sequence of mixed types [ ].
String: Immutable characters only.
2. Explain list slicing with an example.
Answer:
Slicing: [start:end:step] for sub-list.
Ex: list1=['Red','Green','Blue']; list1[1:3] → ['Green','Blue'].
3. Differentiate between append() and extend().
Answer:
Append: Adds single element (or list as one).
Extend: Adds each element of iterable.
Medium Answer Questions
4. How to traverse a list? Give two methods.
Answer:
For item in list: Direct elements.
For i in range(len(list)): Index access.
5. What is a dictionary? How to access/update values?
Answer:
Dict: Unordered {key:value}.
Access: dict['key']; Update: dict['key']=new.
Long Answer Questions
6. Write a program to implement menu-driven list operations as in Program 4-1.
Answer:
See full code in examples; uses if-elif for 1-9 choices.
7. Explain list methods: sort(), sorted(), reverse().
Answer:
Sort: In-place ascending/descending.
Sorted: New list ascending.
Reverse: In-place order flip.
8. How are dictionaries traversed? List methods.
Answer:
For k in dict: Keys; for v in dict.values(): Values; for k,v in dict.items(): Pairs.
Methods: keys(), values(), items().
9. What error occurs if index out of range? How to avoid?
Answer:
IndexError.
Avoid: Check i < len(list).
10. Differentiate pop() and remove().
Answer:
Pop: Index, returns value.
Remove: Value, no return, first occurrence.
11. For a student database, how to use dict for marks?
Answer:
{'Math':90, 'Sci':85}; Access/update as needed.
12. Write code to reverse a list without reverse().
13. How dict helps in fast lookup vs list?
Answer:
Dict: O(1) key access; List: O(n) search.
14. Explain nested lists with example.
Answer:
[[1,2],[3,4]]; Access list1[0][1]=2.
15. Match: append/extend, sort/sorted.
Answer:
Append: Single add; Extend: Multiple.
Sort: In-place; Sorted: New.
Tip: Practice code (Q6); matching (Q15). Full marks: Point-wise, code snippets.
Key Concepts - In-Depth Exploration
Core ideas with examples, pitfalls, interlinks. Expanded: All concepts with steps/examples/pitfalls for easy learning. Depth: Debates, analysis. Table overflow fixed.
List Mutability
Steps: Create → Assign index. Ex: list1[3]='Black'. Pitfall: Strings immutable. Interlink: Dicts. Depth: Dynamic data.
Slicing
Steps: [start:end:step]. Ex: [2:6:2]. Pitfall: End exclusive. Interlink: Strings. Depth: Sub-sequences.
Traversal
Steps: For/range len. Ex: Print each. Pitfall: Modify while loop. Interlink: Loops Ch3. Depth: Iteration.
Append vs Extend
Steps: Append one; Extend iter. Ex: [50] vs [40,50]. Pitfall: Nested add. Interlink: Lists. Depth: Growth.
Dict Access
Steps: dict[key]; get(key). Ex: {'A':1}['A']. Pitfall: KeyError. Interlink: JSON. Depth: Hashing.
Sort vs Sorted
Steps: Sort in-place; Sorted new. Ex: reverse=True. Pitfall: Non-comparable. Interlink: Tuples. Depth: Ordering.
Nested Structures
Steps: List in list/dict. Ex: [['Subj',101]]. Pitfall: Deep access. Interlink: Pandas. Depth: Hierarchies.
Error Handling
Steps: Check len/index. Ex: if i < len. Pitfall: Crashes. Interlink: Try-except. Depth: Robust code.
Dict Traversal
Steps: Keys/values/items. Ex: For k,v in items. Pitfall: Order none. Interlink: Sets. Depth: Unordered.
Membership Ops
Steps: In check. Ex: 'a' in list. Pitfall: Slow O(n). Interlink: Dicts O(1). Depth: Search.
Aggregates
Steps: Min/max/sum. Ex: sum(list1). Pitfall: Non-numeric. Interlink: Stats. Depth: Compute.
Menu-Driven
Steps: Input choice → if-elif. Ex: Program 4-1. Pitfall: Invalid input. Interlink: Functions. Depth: User interaction.
Advanced: Comprehensions, error types. Pitfalls: Mutability bugs. Interlinks: To Ch5 sets. Real: Data processing. Depth: 12 concepts details. Examples: Code figs. Graphs: Method comparisons. Errors: Append/extend mix. Tips: Steps evidence; compare tables (methods).
Historical Perspectives - Detailed Guide
Evolution of Python data structures; expanded with points; links to pioneers/debates. Added list origins, dict influences.
Python Lists (1991)
Guido: Mutable arrays from ABC lang. Dynamic typing key.
Depth: From C arrays to Python.
Slicing Invention (1990s)
Borrowed from Perl/ABC. Step for strides.
Depth: Efficient sub-views.
Dictionaries (1991)
Hash tables from Lisp/Smalltalk. Fast O(1) access.
Depth: Key-value evolution.
Methods Growth (Python 2/3)
Append/extend in 1.0; sorted 2.4. Views in 3.0.
Depth: Usability improvements.
Comprehensions (2.0)
Functional style from Haskell. Dicts in 2.7.
Depth: Concise creation.
Nested Structures (Early)
Enabled recursion; JSON-like 2000s.
Depth: Complex data.
Tip: Link to Python versions. Depth: Reflexive growth. Examples: Guido quotes. Graphs: Timeline. Advanced: Post-2025 typing. Easy: Bullets impacts.
Solved Examples - From Text with Simple Explanations
Expanded with evidence, code; focus on operations, analysis. Added slicing calc, menu snippet.
Example 1: List Creation & Access
list1 = [2,4,6,8,10,12]
print(list1[0]) # 2
print(list1[-1]) # 12
print(len(list1)) # 6
Simple Explanation: Indices 0-first, -1-last; len for bounds.
Example 2: Operations (Concat/Slice)
list1 = [1,3,5]
list2 = [2,4,6]
print(list1 + list2) # [1,3,5,2,4,6]
print(list1[1:]) # [3,5]
Simple Explanation: + merges; slice from 1 to end.
Example 3: Methods (Append/Extend/Sort)
list1 = [10,20,30]
list1.append(40) # [10,20,30,40]
list1.extend([50,60]) # [10,20,30,40,50,60]
list1.sort(reverse=True) # [60,50,40,30,20,10]
Simple Explanation: Append one; extend many; sort descending.
Example 4: Traversal
colors = ['Red','Green','Blue']
for color in colors:
print(color)
# Output: Red Green Blue
Simple Explanation: For loop iterates elements.
Example 5: Dict Basics
student = {'Name':'Amit', 'Age':20}
print(student['Name']) # Amit
student['Grade'] = 'A' # Add
Simple Explanation: Key access; assign to update/add.
Example 6: Menu Snippet (From 4-1)
if choice == 1:
elem = eval(input("Enter element: "))
myList.append(elem)
print("Appended")
Simple Explanation: Input → append → confirm.
Tip: Run in interpreter; troubleshoot (e.g., eval errors). Added for dicts, menus.
Interactive Quiz - Master Lists & Dictionaries
10 MCQs in full sentences; 80%+ goal. Covers creation, ops, methods, dicts.
Start Quiz
Quick Revision Notes & Mnemonics
Concise summaries for subtopics. Tables for scan: Key points, examples, mnemonics. Covers lists/dicts, methods. Bold terms; short phrases.
Subtopic
Key Points
Examples
Mnemonics/Tips
Lists Basics
List : [ ] mutable ordered.Index : 0/-1 access.Len : Size.
[2,4,6]; list1[0]=2.
LIL (List Index Len). Tip: "Lists Love Indices From Left/Right".
Operations
+ : Concat; * : Repeat.in : Check; Slicing : [ : : ].
[1,3]+[2]; [::2].
CRSI (Concat Repeat Slice In). Tip: "Cats Run Silently In shadows".
Traversal
For : Direct; Range(len) : Index.
for item in list.
FR (For Range). Tip: "Friends Roam lists".
Methods
Append/Extend : Add; Insert/Pop : Pos.Sort/Sorted : Order; Reverse : Flip.
append(50); sort().
AES R (Append Extend Sort Reverse). Tip: "A Elephant Sorts Rooms".
Dictionaries
Dict : {key:val}; Access : [key].Traverse : keys/values/items.
{'A':1}; dict.keys().
DKT (Dict Key Traverse). Tip: "Dicts Keep Things Organized".
Overall Tip: Use LIL-CRSI-FR-AESR-DKT for scan (5 mins). Flashcards: Front (term), Back (code + mnemonic). Print for wall. Covers 100% – easy exams!
Key Terms & Processes - All Key
Expanded table 30+ rows; quick ref. Added advanced (e.g., Comprehension, Nested). Overflow fixed.
Term/Process Description Example Usage
List Ordered mutable seq [2,4,6] Data group
Index Position 0/-1 list[0] Access
Mutable Changeable list[3]=val Dynamic
Concatenation Join + [1]+[2] Merge
Slicing [start:end:step] [1:3] Sub-list
Traversal Loop access for item in list Iterate
Append Add end append(50) Grow
Extend Add iter extend([40,50]) Merge
Dictionary Key-value {'A':1} Map
Key Unique id 'Name' Lookup
Nested List List in list [['A',1]] 2D
Len Length len(list)=6 Size
Repetition Replicate * ['Hi']*3 Dupe
Membership in/not in 'a' in list Check
Insert Add index insert(2,25) Pos
Pop Remove return pop(3) Extract
Sort In-place order sort() Arrange
Sorted New order sorted(list) Copy
Dict Comprehension {k:v for} {x:x**2 for x in range(5)} Concise
Keys View keys dict.keys() Traverse
Values View values dict.values() Data
Items Key-value pairs dict.items() Loop
Get Safe access get('key',def) No error
Update Merge dicts update(dict2) Combine
IndexError Out range list[15] Bounds
ValueError Not found remove(90) Exist
TypeError Wrong type list + str Compat
Range Seq gen range(len) Indices
Nested Dict Dict in dict {'user':{'name':'A'}} Complex
Count Occurrences count(10)=3 Freq
Index (method) First pos index(20)=1 Locate
Remove Delete val remove(30) Cleanup
Reverse Flip order reverse() Backward
Min/Max Extreme min(list)=12 Compare
Sum Total sum(list)=284 Aggregate
Tip: Examples memory; sort subtopic. Easy: Table scan. Added 10 rows depth.
Processes Step-by-Step
Step-by-step breakdowns. Visual descriptions; actionable with code. Overflow fixed.
Process 1: List Slicing
Step 1: Define list.
Step 2: Specify [start:end:step].
Step 3: Extract sub.
Step 4: Use new list.
Step 5: Handle empty/out-range.
Visual: Array → Slice → Sub-array. Code: list1[1:4:2].
Process 2: Traversal with For
Step 1: Define list.
Step 2: for item in list.
Step 3: Process item.
Step 4: End loop.
Step 5: Output results.
Visual: Loop arrow over elements. Code: for i in list: print(i).
Process 3: Append/Extend
Step 1: Start list.
Step 2: Append single or extend iter.
Step 3: Verify len+1/n.
Step 4: Print updated.
Step 5: Repeat as needed.
Visual: List → + end → New list. Code: append(5); extend([6]).
Process 4: Dict Update
Step 1: Create dict.
Step 2: Assign dict[key]=val.
Step 3: Or update(other).
Step 4: Access check.
Step 5: Traverse verify.
Visual: Pairs → Add pair → Updated. Code: dict['new']=10.
Process 5: Sorting
Step 1: Unsorted list.
Step 2: sort() or sorted().
Step 3: Specify reverse if desc.
Step 4: Print ordered.
Step 5: Note in-place vs new.
Visual: Random → Arrows sort → Ordered. Code: list.sort(reverse=True).
Process 6: Menu-Driven Op
Step 1: Init list, choice=0.
Step 2: Print menu 1-9.
Step 3: Input choice.
Step 4: If-elif execute.
Step 5: Loop/display.
Visual: Menu → Choice → Action → Update. Code: if choice==1: append().
Tip: Follow like recipe; apply to ex (4.1). Easy: Number + code per step.
As an Amazon Associate, ProSyllabus earns from qualifying purchases. Prices shown are subject to change.
This chapter is part of the CBSE Class 11 Annual Assessment Board Examination Explore every chapter — NCERT notes, important questions & MCQ quizzes Playing as guest — sign in so your rank, XP and attempts aren't lost #1
Constitution: Why and How?
6.8/10 avg score
9/10 best
5leaderboard ranks ›#2
What is Psychology?
8.8/10 avg score
10/10 best
4leaderboard ranks ›#3
India – Location
6/10 avg score
10/10 best
3leaderboard ranks ›#4
Nomadic Empires
8/10 avg score
9/10 best
3leaderboard ranks ›#5
Animal Kingdom
2.3/10 avg score
5/10 best
3leaderboard ranks ›#6
The Living World
6/10 avg score
9/10 best
3leaderboard ranks ›#7
Mother's Day
10/10 avg score
10/10 best
2leaderboard ranks ›#8
A Photograph
8/10 avg score
9/10 best
2leaderboard ranks ›#9
Methods of Enquiry in Psychology
9.5/10 avg score
10/10 best
2leaderboard ranks ›#10
Election and Representation
7.5/10 avg score
8/10 best
2leaderboard ranks ›#11
Political Theory: An Introduction
7/10 avg score
10/10 best
2leaderboard ranks ›#12
An Empire Across Three Continents
8.5/10 avg score
9/10 best
2leaderboard ranks ›#13
Plant Kingdom
3.5/10 avg score
4/10 best
2leaderboard ranks ›#14
Biological Classification
8.5/10 avg score
9/10 best
2leaderboard ranks ›#15
Motion in a Straight Line
2.5/10 avg score
4/10 best
2leaderboard ranks ›#16
Accountancy (Class 11) Practice Quiz | CBSE Class 11 Annual Assessment
2/10 avg score
4/10 best
2leaderboard ranks ›#17
Sets and Venn Operations Fundamentals — Free CBSE Class 11 Annual Assessment Quiz
2/10 avg score
3/10 best
2leaderboard ranks ›#18
The Summer of the Beautiful White Horse
9/10 avg score
9/10 best
1leaderboard ranks ›#19
The Laburnum Top
10/10 avg score
10/10 best
1leaderboard ranks ›#20
Discovering Tut: the Saga Continues
10/10 avg score
10/10 best
1leaderboard ranks ›#21
We're Not Afraid to Die... if We Can All Be Together
10/10 avg score
10/10 best
1leaderboard ranks ›#22
The Portrait of a Lady
7/10 avg score
7/10 best
1leaderboard ranks ›#23
Learning
8/10 avg score
8/10 best
1leaderboard ranks ›#24
Federalism
10/10 avg score
10/10 best
1leaderboard ranks ›#25
Rights in the Indian Constitution
7/10 avg score
7/10 best
1leaderboard ranks ›#26
Social Justice
10/10 avg score
10/10 best
1leaderboard ranks ›#27
Freedom
10/10 avg score
10/10 best
1leaderboard ranks ›#28
Water in the Atmosphere
10/10 avg score
10/10 best
1leaderboard ranks ›#29
Changing Cultural Traditions
10/10 avg score
10/10 best
1leaderboard ranks ›#30
Writing and City Life
9/10 avg score
9/10 best
1leaderboard ranks ›#31
Indian Economy 1950-1990
9/10 avg score
9/10 best
1leaderboard ranks ›#32
Introduction
5/10 avg score
5/10 best
1leaderboard ranks ›#33
Private, Public and Global Enterprises
9/10 avg score
9/10 best
1leaderboard ranks ›#34
Introduction to Accounting
9/10 avg score
9/10 best
1leaderboard ranks ›#35
Cell: The Unit of Life
10/10 avg score
10/10 best
1leaderboard ranks ›#36
Anatomy of Flowering Plants
4/10 avg score
4/10 best
1leaderboard ranks ›#37
Organic Chemistry – Some Basic Principles and Techniques
3/10 avg score
3/10 best
1leaderboard ranks ›#39
Motion in a Plane
5/10 avg score
5/10 best
1leaderboard ranks ›#48
The Ailing Planet: the Green Movement's Role
#53
Sensory, Attentional and Perceptual Processes
#56
Introducing Western Sociologists
#58
Social Change and Social Order in Rural and Urban Society
#59
Social Structure, Stratification and Social Processes in Society
#60
Doing Sociology: Research Methods
#61
Culture and Socialisation
#62
Understanding Social Institutions
#63
Terms, Concepts and Their Use in Sociology
#65
The Philosophy of the Constitution
#66
Constitution as a Living Document
#76
Natural Hazards and Disasters
#80
Structure and Physiography
#81
Biodiversity and Conservation
#84
World Climate and Climate Change
#85
Atmospheric Circulation and Weather Systems
#86
Solar Radiation, Heat Balance and Temperature
#87
Composition and Structure of Atmosphere
#88
Landforms and their Evolution
#90
Distribution of Oceans and Continents
#92
The Origin and Evolution of the Earth
#93
Geography as a Discipline
#95
Displacing Indigenous Peoples
#97
Comparative Development Experiences of India and its Neighbours
#98
Environment and Sustainable Development
#99
Employment: Growth, Informalisation and Other Issues
#101
Human Capital Formation in India
#102
Liberalisation, Privatisation and Globalisation: An Appraisal
#103
Indian Economy on the Eve of Independence
#107
Measures of Central Tendency
#113
MSME and Business Entrepreneurship
#114
Sources of Business Finance
#116
Social Responsibilities of Business and Business Ethics
#117
Emerging Modes of Business
#119
Forms of Business Organisation
#120
Business, Trade and Commerce
#121
Financial Statements - II
#123
Depreciation, Provisions and Reserves
#124
Trial Balance and Rectification of Errors
#125
Bank Reconciliation Statement
#126
Recording of Transactions - II
#127
Recording of Transactions - I
#128
Theory Base of Accounting
#132
Introduction to Three Dimensional Geometry
#137
Permutations and Combinations
#139
Complex Numbers and Quadratic Equations
#142
Chemical Coordination and Integration
#143
Neural Control and Coordination
#145
Excretory Products and their Elimination
#146
Body Fluids and Circulation
#147
Breathing and Exchange of Gases
#148
Plant Growth and Development
#150
Photosynthesis in Higher Plants
#151
Cell Cycle and Cell Division
#153
Structural Organisation in Animals
#154
Morphology of Flowering Plants
#157
Chemical Bonding and Molecular Structure
#158
Classification of Elements and Periodicity in Properties
#159
Some Basic Concepts of Chemistry
#164
Thermal Properties of Matter
#165
Mechanical Properties of Fluids
#166
Mechanical Properties of Solids
#168
Systems of Particles and Rotational Motion
#173
Business Studies (Class 11) Practice Quiz | CBSE Class 11 Annual Assessment
#174
Economics (Class 11) Practice Quiz | CBSE Class 11 Annual Assessment
#175
Humanities Subjects Practice Quiz | CBSE Class 11 Annual Assessment
#176
Motion in a Straight Line Practice Quiz | CBSE Class 11 Annual Assessment
#177
Thermodynamic Processes and Laws Advanced Challenge | CBSE Class 11 Annual Assessment
Group Discussions No forum posts available.
Easily Share with Your Tribe