Welcome! Check out CBSE Class 11 Computer Science Dictionary And Sorting Worksheet right here. Get free printable Class 11 Computer Science worksheets in PDF for Chapter 10 Tuples and Dictionaries. Created by experienced teachers, these practice sheets match the 2026-27 exam guidelines set by CBSE, NCERT, and KVS.
Chapter 10 Tuples and Dictionaries Practice Set for Class 11 Computer Science
Use these Class 11 Computer Science chapter-wise worksheets for daily study routines. They feature important questions and answers for Chapter 10 Tuples and Dictionaries to make test prep simple. Working through these Class 11 Computer Science exercises consistently will sharpen your math and logic skills for the 2026-27 tests.
Class 11 Computer Science Chapter 10 Tuples and Dictionaries Printable PDF Worksheet
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
Download CBSE Practice Material: Class 11 Computer Science
Revision Worksheet: Chapter 10 Tuples and Dictionaries (CBSE)
Make use of the Chapter 10 Tuples and Dictionaries practice set listed above to review effectively for school tests. Prepared according to current CBSE guidelines for Class 11 Computer Science, the material can be saved easily as a PDF format download. Routine problem-solving based on essential exam topics ensures steady grade improvement.
Solved Practice Sets & NCERT 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 online.
Extra Practice for Computer Science
For top-tier results in Class 11, learners are encouraged to attempt the chapter-wise Computer Science MCQ test. Our platform also offers a wide range of printable assignments for Class 11 Computer Science. Consistent practice builds solid self-assurance and secures higher grades in CBSE assessments.
FAQs
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.