Read and download the Chapter 10 Tuples and Dictionaries PDF from the official NCERT Book for Class 11 Computer Science. Updated for the 2026-27 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 (2026-27)
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
| Chapter 1 Computer System NCERT Book PDF |
| Chapter 2 Encoding Schemes and Number System NCERT Book PDF |
| Chapter 3 Emerging Trends NCERT Book PDF |
| Chapter 4 Introduction To Problem Solving NCERT Book PDF |
| Chapter 5 Getting Started with Python NCERT Book PDF |
| Chapter 6 Flow of Control NCERT Book PDF |
| Chapter 7 Functions NCERT Book PDF |
| Chapter 8 Strings NCERT Book PDF |
| Chapter 9 Lists NCERT Book PDF |
| Chapter 10 Tuples and Dictionaries NCERT Book PDF |
| Chapter 11 Societal Impact NCERT Book PDF |
| Computers and Communication Technology Chapter 1 Experiencing The World Of CCT NCERT Book PDF |
| Computers and Communication Technology Chapter 2 Components Of CCT NCERT Book PDF |
| Computers and Communication Technology Chapter 3 Word Processing Tool NCERT Book PDF |
| Computers and Communication Technology Chapter 4 Electronic Spreadsheet NCERT Book PDF |
| Computers and Communication Technology Chapter 5 Electronic Presentation Tool NCERT Book PDF |
| Computers and Communication Technology Chapter 7 The Internet NCERT Book PDF |
| Computers and Communication Technology Chapter 8 Softs Skills For Effective Communication NCERT Book PDF |
| Computers and Communication Technology Chapter 9 Web Page Designing Using HTML NCERT Book PDF |
| Computers and Communication Technology Chapter 10 ClientSide Scripting Using JavaScript NCERT Book PDF |
| Computers and Communication Technology Chapter 11 Project Based Learning NCERT Book PDF |
| Computers and Communication Technology Chapter 12 CCT Projects in Local Context NCERT Book PDF |
| Computers and Communication Technology Chapter 13 Emerging Trends in CCT NCERT Book PDF |
| Computers and Communication Technology Chapter 14 Computer Controlled Devices NCERT Book PDF |
| Chapter 8 NCERT Book PDF |
| Chapter 7 NCERT Book PDF |
| Chapter 6 NCERT Book PDF |
| Chapter 5 NCERT Book PDF |
| Chapter 4 NCERT Book PDF |
| Chapter 3 NCERT Book PDF |
| Chapter 2 NCERT Book PDF |
| Chapter 1 NCERT Book PDF |
| Chapter 6 NCERT Book PDF |
| Chapter 2 NCERT Book PDF |
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.
FAQs
You can download the latest, teacher-verified PDF for NCERT Book Class 11 Computer Science Tuples and Dictionaries for free on StudiesToday.com. These digital editions are updated as per 2026-27 session and are optimized for mobile reading.
Yes, our collection of Class 11 Computer Science NCERT books follow the 2026 rationalization guidelines. All deleted chapters have been removed and has latest content for you to study.
Downloading chapter-wise PDFs for Class 11 Computer Science allows for faster access, saves storage space, and makes it easier to focus in 2026 on specific topics during revision.
NCERT books are the main source for NCERT exams. By reading NCERT Book Class 11 Computer Science Tuples and Dictionaries line-by-line and practicing its questions, students build strong understanding to get full marks in Computer Science.