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 .