Read and download the Chapter 10 Tuples and Dictionaries PDF from the official NCERT Book for Class 11 Computer Science. Updated for the 2025-26 academic session, you can access the complete Computer Science textbook in PDF format for free.
NCERT Class 11 Computer Science Chapter 10 Tuples and Dictionaries Digital Edition
For Class 11 Computer Science, this chapter in NCERT Book Class 11 Computer Science Tuples and Dictionaries provides a detailed overview of important concepts. We highly recommend using this text alongside the NCERT Solutions for Class 11 Computer Science to learn the exercise questions provided at the end of the chapter.
Chapter 10 Tuples and Dictionaries NCERT Book Class Class 11 PDF (2025-26)
10.1 INTRODUCTION TO TUPLES
A tuple is an ordered sequence of elements of different data types, such as integer, float, string, list or even a tuple. Elements of a tuple are enclosed in parenthesis (round brackets) and are separated by commas. Like list and string, elements of a tuple can be accessed using index values, starting from 0.
Example 10.1
#tuple1 is the tuple of integers
>>> tuple1 = (1,2,3,4,5)
>>> tuple1
(1, 2, 3, 4, 5)
#tuple2 is the tuple of mixed data types
>>> tuple2 =('Economics',87,'Accountancy',89.6)
>>> tuple2
('Economics', 87, 'Accountancy', 89.6)
#tuple3 is the tuple with list as an element
>>> tuple3 = (10,20,30,[40,50])
>>> tuple3
(10, 20, 30, [40, 50])
#tuple4 is the tuple with tuple as an element
>>> tuple4 = (1,2,3,4,5,(10,20))
>>> tuple4
(1, 2, 3, 4, 5, (10, 20))
If there is only a single element in a tuple then the element should be followed by a comma. If we assign the value without comma it is treated as integer. It should be noted that a sequence without parenthesis is treated as tuple by default.
#incorrect way of assigning single element to
#tuple
#tuple5 is assigned a single element
>>> tuple5 = (20)
>>> tuple5
20
>>>type(tuple5) #tuple5 is not of type tuple
<class 'int'> #it is treated as integer
#Correct Way of assigning single element to
#tuple
#tuple5 is assigned a single element
>>> tuple5 = (20,) #element followed by comma
>>> tuple5
(20,)
>>>type(tuple5) #tuple5 is of type tuple
<class 'tuple'>
#a sequence without parentheses is treated as
#tuple by default
>>> seq = 1,2,3 #comma separated elements
>>> type(seq) #treated as tuple
<class 'tuple'>
>>> print(seq) #seq is a tuple
Click on the below link to download NCERT Class 11 Computer Science Tuples and Dictionaries
| NCERT Book Class 11 Computer Science Computer System |
| NCERT Book Class 11 Computer Science Encoding Schemes and Number System |
| NCERT Book Class 11 Computer Science Emerging Trends |
| NCERT Book Class 11 Computer Science Introduction To Problem Solving |
| NCERT Book Class 11 Computer Science Getting Started with Python |
| NCERT Book Class 11 Computer Science Flow of Control |
| NCERT Book Class 11 Computer Science Functions |
| NCERT Book Class 11 Computer Science Strings |
| NCERT Book Class 11 Computer Science Lists |
| NCERT Book Class 11 Computer Science Tuples and Dictionaries |
| NCERT Book Class 11 Computer Science Societal Impact |
| NCERT Book Class 11 Computers and Communication Technology Experiencing The World Of CCT |
| NCERT Book Class 11 Computers and Communication Technology Components Of CCT |
| NCERT Book Class 11 Computers and Communication Technology Word Processing Tool |
| NCERT Book Class 11 Computers and Communication Technology Electronic Spreadsheet |
| NCERT Book Class 11 Computers and Communication Technology Electronic Presentation Tool |
| NCERT Book Class 11 Computers and Communication Technology The Internet |
| NCERT Book Class 11 Computers and Communication Technology Softs Skills For Effective Communication |
| NCERT Book Class 11 Computers and Communication Technology Web Page Designing Using HTML |
| NCERT Book Class 11 Computers and Communication Technology Client Side Scripting Using JavaScript |
| NCERT Book Class 11 Computers and Communication Technology Project Based Learning |
| NCERT Book Class 11 Computers and Communication Technology CCT Projects in Local Context |
| NCERT Book Class 11 Computers and Communication Technology Emerging Trends in CCT |
| NCERT Book Class 11 Computers and Communication Technology Computer Controlled Devices |
Important Practice Resources for Class 11 Computer Science
NCERT Book Class 11 Computer Science Chapter 10 Tuples and Dictionaries
Download the official NCERT Textbook for Class 11 Computer Science Chapter 10 Tuples and Dictionaries, updated for the latest academic session. These e-books are the main textbook used by major education boards across India. All teachers and subject experts recommend the Chapter 10 Tuples and Dictionaries NCERT e-textbook because exam papers for Class 11 are strictly based on the syllabus specified in these books. You can download the complete chapter in PDF format from here.
Download Computer Science Class 11 NCERT eBooks in English
We have provided the complete collection of NCERT books in English Medium for all subjects in Class 11. These digital textbooks are very important for students who have English as their medium of studying. Each chapter, including Chapter 10 Tuples and Dictionaries, contains detailed explanations and a detailed list of questions at the end of the chapter. Simply click the links above to get your free Computer Science textbook PDF and start studying today.
Benefits of using NCERT Class 11 Textbooks
The Class 11 Computer Science Chapter 10 Tuples and Dictionaries book is designed to provide a strong conceptual understanding. Students should also access NCERT Solutions and revision notes on studiestoday.com to enhance their learning experience.
You can download the NCERT Book for Class 11 Computer Science Chapter 10 Tuples and Dictionaries for latest session from StudiesToday.com
Yes, you can click on the link above and download chapter wise NCERT Books in PDFs for Class 11 for Computer Science Chapter 10 Tuples and Dictionaries
Yes, the NCERT Book issued for Class 11 Computer Science Chapter 10 Tuples and Dictionaries have been made available here for latest academic session
You can easily access the link above and download the Class 11 NCERT Books Computer Science Chapter 10 Tuples and Dictionaries for each chapter
