Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
5 views3 pages

Class XI - List of Programs For Practical CS

The document outlines a list of practical programming exercises for Computer Science (083) for Class XI for the session 2025-26, organized by month. It includes various programming tasks related to Python, conditional statements, string manipulation, list manipulation, tuples, and dictionaries. Each task aims to enhance students' programming skills through practical application of concepts learned in class.

Uploaded by

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

Class XI - List of Programs For Practical CS

The document outlines a list of practical programming exercises for Computer Science (083) for Class XI for the session 2025-26, organized by month. It includes various programming tasks related to Python, conditional statements, string manipulation, list manipulation, tuples, and dictionaries. Each task aims to enhance students' programming skills through practical application of concepts learned in class.

Uploaded by

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

List of Programs for Practical

Subject: Computer Science (083) Class: XI


Session 2025-26
Month wise split up of Practical’s
Q1-Q10 Q11-Q20 Q21-Q30 Q31-36
August Sept-Oct Nov-Dec Jan
INTRODUCTION TO PYTHON

1 program that input's a student's marks in five subjects(out of 100) and print the percentage
2 To convert given number of days into years, weeks and days
3 Write a program to compute compound interest.

CONDIYIONAL AND ITERATIVE STATEMENTS

4 Write a program to print the largest of three numbers.(only if)


5 Write a program to print the mathematical table of a number
6 Write a program to input a digit and print it in words.
7 Write a program to check whether a entered year is leap year or not.
8 Write a program to find the sum of first “n “natural numbers
9 Write a program to find the factorial value of a number entered by the user.
10 Write a program to find the sum of following series
x/1!+x2/2!+…………………+xn/n!
11 Write a program to print the Fibonacci series of specified terms (0 1 1 2 3 5 ………)
12 Write a program to find sum of all the digits of a given number.(while)
13 Write a program to check whether the number is prime or not.
14 Write a program to check whether a number is palindrome or not.
15 Write a program to calculate BMI of a person after inputting its weight in kgs and height in meters
and then print the nutritional status as per following table :
Nutritional Status WHO criteria BMI cut-off

Underweight less than 18.5

Normal 18.5 to 24.9

Overweight 25 – 29.9

Obesessed 30 or above

Formula to calculate BMI = weight in Kgms./ (height in meter)2


16 Write a program to print the given figures:
(i) 1 (ii) A (iii) 1
22 AB 12
333 ABC 123
4444 ABCD 1234
17 Write a program to print the given figures:
(i) ****** (ii) ###### # (iii) 8
* # # 86
* # # 864
* # # 8642
* #######
*******

STRING MANIPULATION

18 Write a program that prints out the index of every ‘i’ in ‘Mississippi’.
19 Write a program that prompts the user for a string s and a character ch, and outputs the string produced
from s by capitalizing occurrence of the character ch in s and making all other characters lowercase.
If s= ‘Mississippi’ and ch=s
Output=miSSiSSippi.

20 Write a Program to Count Number of Lowercase Characters in a String


21 Write a Program to Check if a String is a Palindrome or Not
22 Write a Program to Take in a String and Replace Every Blank Space with Hyphen.
23 Write a Program to Count the Occurrences of Each Word in a Given String Sentence

LIST MANIPULATION

24 Write a program that prints the sum of the even-indexed elements of L, minus the sum of the odd-
indexed elements of L
25 Write a program to find the median from a given list. Hint: median is middle number of list
26 Write a program to find the range from a given list. Hint: Range is the difference between the largest
and lowest number.
27 Write a program to find the mode from a given list. Hint: Mode is the number that is repeated more
often than any other number.
28
Given a Python list, find value 20 in the list, and if it is present, replace it with
200. Only update the first occurrence of a value
list1 = [5, 10, 15, 20, 25, 50, 20]
Expected output: xxxxxxxxx
list1 = [5, 10, 15, 200, 25, 50, 20]
29 Write a Python program to get the largest number from a list.

30 Write a program to input NXM matrix and find sum of all even numbers in
the
matrix.

31 Write a program that accepts a list of numbers and increases the value of the elements by 10 if the
elements are divisible by 5.

For example:
If list L contains [3,5,10,12,15]
Then the modified list should be as [3,15,20,12,25]
32 Write a program to find sum of rows and columns of the matrix.

TUPLES
32 Write a program that inputs a tuple having words of a string as its elements e.g., (“The”, “quick”,
“brown”,”fox”) and then translates each text element to Pig Latin.
Hint: English is translated to Pig Latin by taking the first letter of every word, moving it to the end of
the word and adding ‘ay’. “The quick brown fox” becomes “Hetay uickqay rownbay oxfay”.
33 Write a program that inputs a tuple T and prints a tuple of the lengths of the subtuples. For example if
passed tuple is
((1,2),(2,4,6),(4),(5,0,5))
Then it should prints (2,3,1,3)

DICTIONARIES
34 Write a code to create customer’s list with their number & name and
delete any
particular customer using his /her number.
35 Write a Python program to input ‘n’ names and phone numbers to store
it in a
dictionary and print the phone number of a particular name.
36 Write a program that inputs a sequence A of numbers and creates another sequence B of numbers of
same size.

You might also like