CBSE Class 11 Computer Science Lists Worksheet

Practice Worksheets for Class 11 Computer Science: Chapter 09 Lists

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

Practice Chapter 09 Lists Worksheets for Class 11 Computer Science

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

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 09 Lists

Download Practice Sheet: Chapter 09 Lists (Class 11 Computer Science)

Explore reliable practice questions for Chapter 09 Lists tailored for Class 11 Computer Science learners. Use these structured worksheets to evaluate preparedness and strengthen problem-solving skills.

Concept Clarification for Chapter 09 Lists

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.

Additional Study Resources for Class 11 Computer Science

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 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.