0% found this document useful (0 votes)
35 views2 pages

Class 10 Computer Project

1. The document provides instructions for a class 10 computer applications project involving programming exercises. Students are instructed to write Java programs to solve 10 problems, print their output on paper following a specific format, and submit by a deadline. 2. The 10 programming problems include calculating discounts on purchases based on cost, checking triangle types, calculating electricity bills based on usage, printing patterns based on user choice, calculating series summations, finding Pell numbers, checking if two numbers are amicable pairs, calculating series summations based on user choice, finding the highest common factor and lowest common factor of two numbers without using a formula, and checking if a number is a magic number. 3. Students are told to copy each question

Uploaded by

charlespowel1802
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)
35 views2 pages

Class 10 Computer Project

1. The document provides instructions for a class 10 computer applications project involving programming exercises. Students are instructed to write Java programs to solve 10 problems, print their output on paper following a specific format, and submit by a deadline. 2. The 10 programming problems include calculating discounts on purchases based on cost, checking triangle types, calculating electricity bills based on usage, printing patterns based on user choice, calculating series summations, finding Pell numbers, checking if two numbers are amicable pairs, calculating series summations based on user choice, finding the highest common factor and lowest common factor of two numbers without using a formula, and checking if a number is a magic number. 3. Students are told to copy each question

Uploaded by

charlespowel1802
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/ 2

DON BOSCO SCHOOL, BANDEL

CLASS X, COMPUTER APPLICATIONS PROJECT (2023-24)


---------------------------------------------------------------------------------------------------------------------------
---------------
INSTRUCTIONS
1) This project work must be done on A4 size papers.
2) You are required to execute each of these programs on Blue J IDE.
3) You will copy and paste the question for each of these programs along with the question no.
from this PDF file, followed by the executed code from the Blue J IDE. This should be followed
by test run/runs and a variable description table (VDT).
4) You can print your project on both sides of the paper (i.e., back-to-back printing). You will
attach a cover page on the top of your project mentioning your details clearly (i.e., name, class
section and roll no.), an index page at the beginning of the project mentioning only the Question
numbers, page numbers, Teacher’s sign followed by the programs and their outputs as mentioned
above. The variable description (VD) table can be given at the end of each program.
5) A VD should necessarily include three columns: Variable Name, Data Type and Purpose.
6) All the sheets should be securely stapled on the left edge and neatly inserted into a transparent
channel file such that the student details on the top sheet are visible.
7) You are not required to do any unnecessary decorations or coloured printing for this project.
8) You may use the font style Times New Roman with font size 11.
9) The date of submission for this project is 21st June 2023.

1. A clock Showroom has announced the following Festival discounts on the purchase of items based
on the total cost of the item purchased.

Total Cost Discount


Less than or Equal to ₹2000 5%
From ₹2001 to ₹5000 25%
From ₹5001 to ₹10000 35%
Above ₹10000 50%
Write a program to input the total cost, compute and display the amount to be paid by customer after
availing discount.
2. Write a program to input three sides of a triangle and check its forms a triangle or not. If it forms
check whether it is equilateral, scalene or isosceles triangle.
3. An electricity company calculates the bill amount from the user according to the following slab.
Unit Consumed. ₹- per unit.
Up to 100 ₹5
Next 150 ₹10
Next 150 ₹15
More than 400 ₹20
Add 15% of the calculated amount as surcharge. Write a program which will accept the number of
units consumed and calculate the bill amount and display it.
4. Write a menu driven program which will display one of the following patterns depending on the
user’s choice.

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.

You might also like