0% found this document useful (0 votes)
30 views6 pages

XI Computer Science Practical File Questions 2024-245docx

This document is a practical file for Class XI Computer Science at Kamal Model Sr. Sec. School for the academic year 2024-25. It includes acknowledgments, a certificate of completion, and a list of programming tasks to be completed in Python, covering various concepts such as arithmetic operations, loops, and data structures. The file is submitted under the supervision of the teacher Swapan Kapuria as part of the CBSE practical evaluation requirements.

Uploaded by

Meena Chauhan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
30 views6 pages

XI Computer Science Practical File Questions 2024-245docx

This document is a practical file for Class XI Computer Science at Kamal Model Sr. Sec. School for the academic year 2024-25. It includes acknowledgments, a certificate of completion, and a list of programming tasks to be completed in Python, covering various concepts such as arithmetic operations, loops, and data structures. The file is submitted under the supervision of the teacher Swapan Kapuria as part of the CBSE practical evaluation requirements.

Uploaded by

Meena Chauhan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

A MA L MODEL SR. SEC.

SCHOOL
K

XI Class-Computer Sc.
PRACTICAL FILE
2024-25
SUBMITTED BY:

Write your name


Class - Section
Submitted To:

SWAPAN KAPURIA
(PGT. Comp. Sc.)
ACKNOWLEDGEMENT

I wish to express my deep sense of gratitude and


indebtedness to our teacher Swapan Kapuria, PGT
COMPUTER SCIENCE, Kamal Model Sr. Sec. School for
his invaluable help, advice and guidance in the
preparation of this file.
I am also greatly indebted to our Principal Dr.
Vandana Tandon for providing me state of the art
Lab facility which is necessary for making this
practical file.
I also extend my thanks to Gourav Sir, Lab Engineer,
my classmates and friends who helped me to
complete this practical file successfully.

[Name of Student]
CERTIFICATE

This is to certify that [Name of Student], student of Class


XI, Kamal Model School has completed the PRACTICAL FILE
during the academic year 2024-25 towards partial fulfillment
of credit for the Computer Science practical evaluation of CBSE
and submitted satisfactory report, as compiled in the following
pages, under my supervision.

Swapan Kapuria
PGT Computer Sc.
Kamal Model Sr. Sec. School
XI- Computer Science
List of Practical 2024-25
(Do 1 to 10 questions in holidays)

Practical Date Signature

1 Write a python program to input two numbers and display their sum,
subtraction, product and division.
2 Write a python program to input two numbers and display the
larger / smaller
number.
3 Write a python program to input three numbers and display the
largest /smallest number.

4 Generate the following patterns using nested loop.


A
AB
ABC
ABCD
ABCDE

5 Write a program to input the value of x and n and print the sum of
the following series:
a. 1 + x² + x³ + ... + xⁿ
b. x - x2/2! + x3/3! - x4/4! + x5/5! - x6/6!
6 Write a program to determine whether a number is an
Armstrong number

7 Write a program to input a number and check if the number is a


prime or not?
8 Write a program to display the n terms of a Fibonacci series.
9 Write a python program to compute the greatest common divisor of
two nos.

10 Write a program to count and display the number of vowels,


consonants, uppercase, lowercase characters in string.
11. Write a program to input a number and check it is palindrome or not.

12. Write a program to count frequency of a given element in a list of


numbers.
If the list contains[1,1,1,2,2,3,4,2,2,5,5,2,2,5]
Enter element :2
Output: 2 has frequency as 6 in given list.
13.
Write a program to input a String and display how many words are
there?
14.
Write a program to form a list. Enter an element and search it is
there in the list or not? If it is found then print its index.
15. WAP to remove all odd numbers from the given list. If the list is
having [2,5,6,7,9,8] then the output will be [2,6,8]

16. WAP in Python to find and display the sum of all the values which
are ending with 3 from a list.

17. WAP to accept values from user and create a tuple

18. Write a Python program to input names of ‘n’ countries and their
capital and currency, store it in a dictionary and display in tabular
form. Also search and display for a particular country.
19. Write a program that creates a tuple storing first 9 terms of Fibonacci
series

20.
Write a program that inputs two tuples and creates a third, that
contains all elements of the first followed by all elements of the
second.
21. Write a program that takes a value and checks whether the given
value is part of given dictionary or not. If it is, it should print the
corresponding key otherwise print an error message.
Note:
You can do this programs in Python idle/ Jupiter/Google collab etc. One
page can not have more than one program. Each Page will have
“””

Question
“””

python code

“””

then output.
“””
**

You might also like