CBSE Class 11 Computer Science Lists Worksheet

Find CBSE Class 11 Computer Science Lists Worksheet right below. We offer free printable Class 11 Computer Science worksheets in PDF for Chapter 9 Lists. Built by expert teachers for the 2026-27 session, these practice exercises align with standard CBSE, NCERT, and KVS patterns.

Worksheets for Class 11 Computer Science - Chapter 9 Lists

Every student of Class 11 Computer Science should practice with these chapter-wise worksheets. They provide great questions and solutions for Chapter 9 Lists to boost your confidence. Practicing these Class 11 Computer Science sheets regularly makes you faster and more accurate for your 2026-27 exams.

Get Chapter 9 Lists Worksheet PDF for Class 11 Computer Science

WS 4 – Lists


1. G ive the output of the following code:-

list=['p','r','o','b','l','e','m']
list[1:3]=[]
print(list)
list[2:5]=[]
print(list)

2. G ive the output of the following code:-

l1=[13,18,11,16,13,18,13]
print(l1.index(18))
print(l1.count(18))
l1.append(l1.count(13))
print(l1)

3. W AP in python to create a list of natural numbers from 1 to 50 using for loop.

4. W AP in python to take two lists of same size and create a third list of same size with adding elements at the same location of 1st & 2nd list. E.g. if A=[1,2,3], B= [4,5,6], then C[5,7,9].

5. W AP in Python to accept any ten numbers from the user in a list and display the maximum number along with its position.

6. W AP in Python to calculate &display the factorial of all elements of an integer list.

7. W AP to remove all even numbers from the given list.

8. W AP the print second largest element of the given list.

9. W AP to display cumulative elements of a given list.

For eg LIST is [10,20,30,40]
Output should be [10, 30,60,100]

10. P redict the output of the following code in python:

T1[0]=2
print(T1)

11. W rite the output for the following:

x = [4, 7, 9, 12, 10]
count = 0
for i in x:
count= count + 1
print("Total number of elements = ", count)

12. W rite the output for the following:

A = [6, 2, 7, 9, 1, 3]
Sum = 0
Avg = 0
for x in range(len(A)):
Sum += A[x];
Avg = Sum//len(A);
print("Sum = ",Sum)
print("Average = ", Avg)

13. W rite the output for the following:

x = []
N = eval(input("enter size of list : "))
for i in range(0, N):
x.append(eval(input("enter "+ str(i) + " element : ")))
print("Numbers in the list are ")
print(x)
max1 = x[0]
for i in range(1, N):
if ( x[i] > max1):
max1 = x[i]
print("Maximum value in the list = ", max1)

Please click on below link to download CBSE Class 11 Computer Science Lists Worksheet

Exam Preparation Worksheet for Class 11 Computer Science Chapter 9 Lists

Chapter Practice Questions for Class 11 Computer Science

Review the Chapter 9 Lists practice sheet above to stay ahead in your school evaluations. Designed to meet the newest CBSE standards for Class 11 Computer Science, these printable problem sets are available as a convenient PDF format download. Regular practice on frequently tested topics guarantees stronger exam performance.

NCERT-Aligned Questions and Answers for Class 11 Computer Science

Built strictly from the official NCERT book for Class 11 Computer Science, this practice content offers reliable academic support. Following your self-practice, our educators recommend reviewing our detailed NCERT solutions to learn optimal problem-solving approaches for Computer Science. All study aids are completely free to access.

More Practice Materials for CBSE Examinations

Enhance your Class 11 achievements by completing the online Computer Science MCQ test available here. We also host numerous printable assignments for Class 11 Computer Science online. Regular exercises cultivate exam readiness and elevate your final standing in CBSE evaluations.

FAQs

Where can I download the latest PDF for CBSE Class 11 Computer Science Lists Worksheet?

You can download the teacher-verified PDF for CBSE Class 11 Computer Science Lists 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 Lists 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 Lists Worksheet?

Yes, we have provided detailed solutions for CBSE Class 11 Computer Science Lists Worksheet to help Class 11 and follow the official CBSE marking scheme.

How does solving CBSE Class 11 Computer Science Lists 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 Lists Worksheet without any registration.