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

Xi Class Term 1 List of Programs

Students are instructed to prepare a printed practical record file for their Class 11 term 1 assignments. The file should be properly indexed and paginated, and enclosed in a transparent folder. It must be submitted by August 31, 2021. The document then lists 27 programming problems and exercises for students to complete as part of their practical record.

Uploaded by

TANISHQ SINGH
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)
18 views3 pages

Xi Class Term 1 List of Programs

Students are instructed to prepare a printed practical record file for their Class 11 term 1 assignments. The file should be properly indexed and paginated, and enclosed in a transparent folder. It must be submitted by August 31, 2021. The document then lists 27 programming problems and exercises for students to complete as part of their practical record.

Uploaded by

TANISHQ SINGH
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/ 3

Instructions to prepare practical record for CLASS XI(TERM-1)

1. It is recommended to prepare printed version of practical


record.
2. Practical file must be properly indexed with page numbers.
3. After taking printout of the soft copy, enclose them in a
transparent folder and submit it up to 31 August 2021.
4. Title page of your practical file will be same.(enclosed here
with)
LIST OF PROGRAMS

1. Write a program to enter the side of a square and print the


area, and perimeter.

2. Write a program to calculate the area and perimeter of a


rectangle.

3. Write a program to convert Fahrenheit to Celsius value.


Formula is:
C=((F-32)*5) / 9

4. Write a program to convert the time given in minutes into


hours and minutes.
5. Write a program to input total number of days and find total
number of months and remaining days after months.

6. Write a program to calculate the volume and surface area of


sphere without using math module constant
4
Volume= π 𝑟 3
3
Area= 4 π 𝑟 2

7. Write a program to find the simple interest of an investment


amount. The formula is as:
SI=PRT/100
8. WAP in python to input your total marks in 5 subjests.Find the
percentage and print “grade A” if the percentage is greater than
or equal to 80.

9. Write a program to find the greatest among three numbers.


Using if elif.

10. Write a program to print the table of any number entered by


user.
11. WAP to print the following pattern:
* * * * * *
* * * * * *
* * * AND * * *
* * * * * *
* * * * * *
12. WAP to find a Fibonacci series of numbers till 21.

13. WAP to find out the factorial of a given number.


14. Write a menu driven program to find the area of circle,
rectangle and square. The menu is as given below:
1-Area of a circle
2-Area of rectangle
3-Area of a square
4-Quit
15. WAP to find the root of quadratic equation. A quadratic
equation has the form ax2+bx+c=0. An equation has tow
solutions for the value of x by the quadratic formula:

− 𝐛 ± √ 𝒃𝟐 −𝟒𝒂𝒄
X=
𝟐𝒂
16. WAP to count total number of characters in an input string.
17.WAP to count total number of vowel characters in an input
string. For example: HELPS HEAL WITHOUT HURTING
Then the output will be displayed as:
Total number of vowels are: 8
18. WAP to enter a string and display the string in reverse order.
19. WAP to print an initialized list of friends.
20. WAP to print a list in reverse order.
21.WAP to search an element in a list.
22.WAP to delete all the even numbers from the numeric list.

23. WAP to create a matrix with m numbers of rows and n


numbers of columns. Display the elements in a matrix format.
Note: the number of rows and columns will be decided at runtime
of the program.
24.WAP that checks a string is palindrome or not.
25. Create a dictionary to store names of states and their
capitals.
26. Create a dictionary of students to store names and
marks obtained in 5 subjects.
27. To print the highest and lowest values in the dictionary.

You might also like