Class 10 Computer Project
Class 10 Computer Project
1. A clock Showroom has announced the following Festival discounts on the purchase of items based
on the total cost of the item purchased.
Choice-1 Choice-2
a 1234
b c 123
d e f 12
g h ij 1
5. Write a program which will find out the summation of the following series. [Accept n from series.].
1+ (1+2) + (1+2+3) + (1+2+3+4+5) +……nth Term.
6. It program to print 1st n numbers of Pell Series.
1,2,5,12,29,70,169…. nth Term.
7. Write a program to accept 2 numbers and check whether they are amicable pair or not. [An
Amicable pair is such that the sum of the factors excluding itself of one number is other than and vice
versa].
Example- 220 & 284
220 = 1+2+4+5+10+11+20+22+44+55+110
284 = 1+2+4+71+142.
8. Write a program which will find out the summation of the following series according to the user’s
choice
Choice-1
-1+2-3+4-5…. nth Term.
Choice-2
1*2+2*6+3*12+…. nth Term.
9. Write a program which will accept two numbers and find out their HCF and LCM separately. [Do
not use the formula HCF * LCM = product of 2 numbers].
10. Write a programme to input a number and cheque whether it is a magic number or not. If you
iterate the process of Summing the square of decimal digits of a number and its process terminates in
one.