Access the latest CBSE Class 11 Computer Science Dictionary And Sorting Worksheet. We have provided free printable Class 11 Computer Science worksheets in PDF format, specifically designed for Chapter 10 Tuples and Dictionaries. These practice sets are prepared by expert teachers following the 2025-26 syllabus and exam patterns issued by CBSE, NCERT, and KVS.
Chapter 10 Tuples and Dictionaries Computer Science Practice Worksheet for Class 11
Students should use these Class 11 Computer Science chapter-wise worksheets for daily practice to improve their conceptual understanding. This detailed test papers include important questions and solutions for Chapter 10 Tuples and Dictionaries, to help you prepare for school tests and final examination. Regular practice of these Class 11 Computer Science questions will help improve your problem-solving speed and exam accuracy for the 2026 session.
Download Class 11 Computer Science Chapter 10 Tuples and Dictionaries Worksheet PDF
WS 7 – Dictionary & Sorting
1. D efine a dictionary. Give an example.
2. C an sequence operations such as slicing and concatenation be applied to dictionaries? Expalin.
3. W hy Lists can’t be used as keys in dictionary.
4. W hy is a dictionary termed as an unordered collection of objects?
5. H ow is del D and del D[<key>] different from one another if D is a dictionary.
6. Id entify and correct the error in the following :
D1={“a”:1,1:”a”,[1,”a”]:”two”]
7. P redict the output for the following :
d1={5:[6,7,8],"a":(1,2,3)}
print(d1.keys())
print(d1.values())
8. P redict the output for the following :
mydict={"m":27,"b":43,"p":25,"d":30}
valA=''
for i in mydict:
if i>valA:
valA=i
valB=mydict[i]
print(valA)
print(valB)
print(30 in mydict)
print("b" in mydict)
myLst=list(mydict.items())
myLst.sort(reverse=True)
print(myLst)
print(myLst[-1])
9. P redict the output for the following :
text="abracadabraaabbccrr"
counts={}
ct=0
lst=[]
for word in text:
if word not in lst:
lst.append(word)
counts[word]=0
ct=ct+1
counts[word]=counts[word]+1
print(counts)
print(lst)
10. P redict the output:
fruit={}
L1=['apple','banana','apple']
for index in L1:
if index in fruit:
fruit[index]+=1
else:
fruit[index]=1
print(len(fruit))
print(fruit)
a={(1,2):1,(2,3):2}
print(a[2,3])
b={'x':1,'y':2,'z':3}
print(b['x'])
11. C reate a dictionary whose keys are month names and whose values are the number of days in the corresponding months.
i. Ask the user to enter a month name and use the dictionary to tell how many days are in the month.
ii. Print out all of the keys in alphabetical order.
iii. Print out all the month with 31 days.
12. W hat is sorting? Name some sorting techniques.
13. W hy do number-of-comparisons reduce in every successive iteration in bubble sort.
14. W hat is the difference bubble sort and insertion sort.
15. W rite a python code to sort a list of tuple elements in descending order of points using bubble sort. The tuple-elements of the list contain the following information about different players: (PlayerNo, Playername, Points)
Please click on below link to download CBSE Class 11 Computer Science Dictionary And Sorting Worksheet
| CBSE Class 11 Computer Science Python Modules Worksheet |
| CBSE Class 11 Computer Science Strings Worksheet |
| CBSE Class 11 Computer Science Lists Worksheet |
| CBSE Class 11 Computer Science Dictionary And Sorting Worksheet |
| CBSE Class 11 Computer Science Tuples Worksheet |
Chapter 10 Tuples and Dictionaries CBSE Class 11 Computer Science Worksheet
Students can use the Chapter 10 Tuples and Dictionaries practice sheet provided above to prepare for their upcoming school tests. This solved questions and answers follow the latest CBSE syllabus for Class 11 Computer Science. You can easily download the PDF format and solve these questions every day to improve your marks. Our expert teachers have made these from the most important topics that are always asked in your exams to help you get more marks in exams.
NCERT Based Questions and Solutions for Chapter 10 Tuples and Dictionaries
Our expert team has used the official NCERT book for Class 11 Computer Science to create this practice material for students. After solving the questions our teachers have also suggested to study the NCERT solutions which will help you to understand the best way to solve problems in Computer Science. You can get all this study material for free on studiestoday.com.
Extra Practice for Computer Science
To get the best results in Class 11, students should try the Computer Science MCQ Test for this chapter. We have also provided printable assignments for Class 11 Computer Science on our website. Regular practice will help you feel more confident and get higher marks in CBSE examinations.
You can download the teacher-verified PDF for CBSE Class 11 Computer Science Dictionary And Sorting Worksheet from StudiesToday.com. These practice sheets for Class 11 Computer Science are designed as per the latest CBSE academic session.
Yes, our CBSE Class 11 Computer Science Dictionary And Sorting Worksheet includes a variety of questions like Case-based studies, Assertion-Reasoning, and MCQs as per the 50% competency-based weightage in the latest curriculum for Class 11.
Yes, we have provided detailed solutions for CBSE Class 11 Computer Science Dictionary And Sorting Worksheet to help Class 11 and follow the official CBSE marking scheme.
Daily practice with these Computer Science worksheets helps in identifying understanding gaps. It also improves question solving speed and ensures that Class 11 students get more marks in CBSE exams.
All our Class 11 Computer Science practice test papers and worksheets are available for free download in mobile-friendly PDF format. You can access CBSE Class 11 Computer Science Dictionary And Sorting Worksheet without any registration.