Read and download free pdf of CBSE Class 11 Computer Science Lists Worksheet. Download printable Computer Science Class 11 Worksheets in pdf format, CBSE Class 11 Computer Science Chapter 9 Lists Worksheet has been prepared as per the latest syllabus and exam pattern issued by CBSE, NCERT and KVS. Also download free pdf Computer Science Class 11 Assignments and practice them daily to get better marks in tests and exams for Class 11. Free chapter wise worksheets with answers have been designed by Class 11 teachers as per latest examination pattern
Chapter 9 Lists Computer Science Worksheet for Class 11
Class 11 Computer Science students should refer to the following printable worksheet in Pdf in Class 11. This test paper with questions and solutions for Class 11 Computer Science will be very useful for tests and exams and help you to score better marks
Class 11 Computer Science Chapter 9 Lists Worksheet Pdf
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
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 9 Lists CBSE Class 11 Computer Science Worksheet
The above practice worksheet for Chapter 9 Lists has been designed as per the current syllabus for Class 11 Computer Science released by CBSE. Students studying in Class 11 can easily download in Pdf format and practice the questions and answers given in the above practice worksheet for Class 11 Computer Science on a daily basis. All the latest practice worksheets with solutions have been developed for Computer Science by referring to the most important and regularly asked topics that the students should learn and practice to get better scores in their examinations. Studiestoday is the best portal for Printable Worksheets for Class 11 Computer Science students to get all the latest study material free of cost. Teachers of studiestoday have referred to the NCERT book for Class 11 Computer Science to develop the Computer Science Class 11 worksheet. After solving the questions given in the practice sheet which have been developed as per the latest course books also refer to the NCERT solutions for Class 11 Computer Science designed by our teachers. After solving these you should also refer to Class 11 Computer Science MCQ Test for the same chapter. We have also provided a lot of other Worksheets for Class 11 Computer Science which you can use to further make yourself better in Computer Science.
You can download the CBSE Practice worksheets for Class 11 Computer Science Chapter 9 Lists for the latest session from StudiesToday.com
Yes, the Practice worksheets issued for Chapter 9 Lists Class 11 Computer Science have been made available here for the latest academic session
There is no charge for the Practice worksheets for Class 11 CBSE Computer Science Chapter 9 Lists you can download everything free
Regular revision of practice worksheets given on studiestoday for Class 11 subject Computer Science Chapter 9 Lists can help you to score better marks in exams
Yes, studiestoday.com provides all the latest Class 11 Computer Science Chapter 9 Lists test practice sheets with answers based on the latest books for the current academic session