CBSE Class 11 Computer Science Dictionary And Sorting Worksheet

Class 11 Computer Science Practice Set: Chapter 10 Tuples and Dictionaries

Explore reliable practice materials for Chapter 10 Tuples and Dictionaries tailored for Class 11 learners. Utilizing these Computer Science worksheets ensures thorough preparation and strengthens problem-solving speed for upcoming school assessments.

Download Chapter 10 Tuples and Dictionaries Worksheet PDF

Access the complete worksheet PDF for Chapter 10 Tuples and Dictionaries below. Regular practice with these targeted questions builds familiarity with standard exam patterns and helps secure higher marks in final Computer Science evaluations.

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 Chapter 10 Tuples and Dictionaries

Chapter 10 Tuples and Dictionaries Printable Worksheet for Class 11 Computer Science

Review targeted practice exercises for Class 11 Computer Science Chapter 10 Tuples and Dictionaries. Curated to match official CBSE guidelines, these downloadable PDF sheets support daily revision and core concept reinforcement.

How to Use These Practice Sheets

Cross-reference your completed exercises with comprehensive NCERT solutions for Class 11 Computer Science to ensure absolute clarity across all sub-topics in this chapter.

Enhance Speed with Online Practice

Follow up your worksheet practice by attempting the interactive online Computer Science MCQ test for this chapter to evaluate your execution speed. All platform resources are free to access.

FAQs

Where can I download the latest PDF for CBSE Class 11 Computer Science Dictionary And Sorting Worksheet?

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.

Are these Computer Science Class 11 worksheets based on the 2026-27 competency-based pattern?

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.

Do you provide solved answers for CBSE Class 11 Computer Science Dictionary And Sorting Worksheet?

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.

How does solving CBSE Class 11 Computer Science Dictionary And Sorting Worksheet help in exam preparation?

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.

Is there any charge for the Class 11 Computer Science practice test papers?

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.