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

Class 10 Project

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)
15 views2 pages

Class 10 Project

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

HOLIDAY HOMEWORK COMPUTER APPLICATION PROJECT

CLASS 10 : Write programs in JAVA.

1. Define a class Electric Bill with the following specifications:


class : ElectricBill
Instance variables / data member:
String n – to store the name of the customer
int units – to store the number of units consumed
double bill – to store the amount to be paid
Member methods:
void accept( ) – to accept the name of the customer and number of units consumed
void calculate( ) – to calculate the bill as per the following tariff:
Number of units Rate per unit
First 100 units Rs.2.00
Next 200 units Rs.3.00
Above 300 units Rs.5.00
A surcharge of 2.5% charged if the number of units consumed is above 300 units.
void print ( ) - To print the details as follows:
Name of the customer: ………………………
Number of units consumed: ………………………
Bill amount: ………………………
Write a main method to create an object of the class and call the above member
methods.
2. Design a class name ShowRoom with the following description:
Instance variables / Data members:
String name - To store the name of the customer
long mobno - To store the mobile number of the customer
double cost - To store the cost of the items purchased
double dis - To store the discount amount
double amount- To store the amount to be paid after discount
Member methods:
ShowRoom() - default constructor to initialize data members
void input () - To input customer name, mobile number, cost
void calculate () -To calculate discount on the cost of purchased items, based on
following criteria

Discount
Cost
(in percentage)
Less than or equal to ₹ 10000 5%
More than ₹10000 and less than or equal to ₹ 20000 10%
More than ₹ 20000 and less than or equal to ₹ 35000 15%
More than ₹ 35000 20%

Void display () - To display customer name, mobile number , amount to be paid


after discount.
Write a main method to create an object of the class and call the above member
methods.
3. Define a class named BookFair with the following description :
Instance variables /Data members :
String Bname - stores the name of the book
double price - stores the price of the book
Member methods :
(i) BookFair() - Default constructor to initialize data members
(ii) void Input() - To input and store the name and the price of the book.
(iii) void calculate() - To calculate the price after discount. Discount is calculated
based on the following criteria
Price Discount
Less than or equal to `1000 2% of price
More than ` 1000 and less than or equal to ` 3000 10% of price
More than ` 3000 15% of price
(iv) void display() - To display the name and price of the book after discount.
Write a main method to create an object of the class and call the above member
methods.
4. Design a class to overload a function SumSeries() as follows :
(i) void SumSeries(int n, double x) – with one integer argument and one double
argument
to find and display the sum of the series given below :
s =𝑥 /1-𝑥/2+ 𝑥/3-𝑥/ 4+ 𝑥/5… … … to n terms
(ii) void SumSeries() – To find and display the sum of the following series :
s = 1 + (1 × 2) + (1 × 2 × 3)+. … … … + (1 × 2 × 3 × 4 … … … … … × 20)
5. Design a class to overload a function volume() as follows:
(i) double volume (double R) – with radius (R) as an argument, returns the volume of
sphere
using the formula.V = 4/3 × 22/7 × R3
(ii) double volume (double H, double R) – with height(H) and radius(R) as the
arguments,
returns the volume of a cylinder using the formula.V = 22/7 × R2 × H
(iii) double volume (double L, double B, double H) – with length(L), breadth(B) and
Height(H) as the arguments, returns the volume of a cuboid using the formula.
V=L×B×H

You might also like