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

11 Ip List of Programs For Practical File

Uploaded by

adityaguptakps
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)
32 views3 pages

11 Ip List of Programs For Practical File

Uploaded by

adityaguptakps
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 FILE

CLASS – 11
SUBJECT – Informatics Practices
S. PROGRAMS
NO

1) Write a program to accepts two integers and print their sum.

2) Write a program that accepts base and height and calculate the area of triangle.

3) Write a program to compute area of square and triangle.

4) Write a program to calculate simple interest and compound interest.

5) Write a program to read two numbers and prints their quotient and reminder.

6) Write a program to find whether a given number is even or odd.

7) Write a program to find largest among three integers.

8) Write a program that reads the number n and print the value of n², n³ and n⁴.

9) Write a program to accept the marks of five subjects and calculate the average marks.

10) Write a program to accept the height in cm and convert it into feet and inches.

11) Write a program that accepts two numbers and check if the first number is fully divisible by
second number or not.

12) Write a program to read base, width and height of parallelogram and calculate its area and
perimeter.

13) Write a program to accept the year and check if it is a leap year or not.

14) Write a program to obtain x, y, z and calculate 4x⁴+3y³+9z+6π.

15) Write a program to input a number and print its square if it is odd, otherwise print its square
root.
16) Write a program to input a number and check whether it is positive, negative or zero.

17) Write a program to input percentage marks of a student and find the grade as per following
criterion:
Marks Grade
>=90 A
75-90 B
60-75 C
Below 60 D
18) Write a program to print whether a given character is an uppercase or a lowercase character or
a digit or any other character.

19) Write a program to calculate and print the roots of a quadratic equation ax²+bx+c=0.(a≠0)

20) Write a program to calculate the factorial of a number.

21) Write a Python script to print Fibonacci series’ first 20 elements.

22) Write a Python program to check number is prime or not.

23) Write a program to calculate BMI and print the nutritional status as per following table:

Nutritional Status WHO criteria BMI cut-off


Underweight <18.5
Normal 18.5-24.9
Overweight 25-29.9
Obese ≥30
24) Write a python program to accept list and search a particular value in the list. If it exist, then the
functions should display “exist”, otherwise should display “Does not exit”.
25) Write a program to calculate the mean of a given list of numbers.
SAMPLE PAGE

PROGRAM NO. – 1: Write a program to accepts two integers and print their sum.

CODE:

OUTPUT:

You might also like