0% found this document useful (0 votes)
5 views1 page

Python Programs for Class XI Students

The document is a worksheet for Class XI that includes various programming tasks in Python. It covers topics such as calculating simple interest, performing arithmetic operations, string repetition, finding averages, and checking properties of numbers like odd/even, palindrome, and Armstrong. Additionally, it includes tasks for printing specific number series and requires students to print the programs for their practical files.

Uploaded by

jkmalli3445901
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)
5 views1 page

Python Programs for Class XI Students

The document is a worksheet for Class XI that includes various programming tasks in Python. It covers topics such as calculating simple interest, performing arithmetic operations, string repetition, finding averages, and checking properties of numbers like odd/even, palindrome, and Armstrong. Additionally, it includes tasks for printing specific number series and requires students to print the programs for their practical files.

Uploaded by

jkmalli3445901
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

WORKSHEET

CLASS-XI
WORKSHEET (Programs)

Q: Write a Python program to calculate the amount payable if money has been lent on simple interest.
Principal or money lent = P, Rate of interest = R% per annum and Time = T years.
Then Simple Interest (SI) = (P x R x T)/ 100.
Amount payable = Principal + SI.
P, R and T are given as input to the program.
Q: Write a program to enter two integers and perform all arithmetic operations on them.
Q: Write a program to repeat the string ‘‘GOOD MORNING” n times. Here ‘n’ is an integer entered by the user.
Q: Write a program to find average of three numbers.
Q: The volume of a sphere with radius r is 4/3πr3. Write a Python program to find the volume of spheres with
radius 7cm, 12cm, 16cm, respectively.
Q: W.A.P to enter a number check whether it is odd or even.
Q: W.A.P to enter the first 10 natural numbers and their sum.
Q: W.A.P to enter a number and check whether is palindrome or not.
Q: W.A.P. to check whether a number is Armstrong or not.
Q: W.A.P to print the series :
(i) 1 (ii) 1 2 3 4 (iii) *
1 2 1 2 3 * *

1 2 3 1 2 * * *

1 2 3 4 1 * * * *

(iv) 1

2 2

3 3 3

4 4 4 4

NOTE: Take print out of these programs also & add in your practical file .

You might also like