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

Java Assignment 2

1. Define a Point class with x and y fields and a distance method to calculate distance between two Points using Math.sqrt. 2. Define a Shape class with two constructors and a Test1 subclass with overloading constructors that call the Shape constructors. Override Test1's calculate method. 3. Define a Member class with member data. Define Employee and Manager subclasses that inherit Member and have additional data. Create objects of each and print member data.
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
0% found this document useful (0 votes)
49 views1 page

Java Assignment 2

1. Define a Point class with x and y fields and a distance method to calculate distance between two Points using Math.sqrt. 2. Define a Shape class with two constructors and a Test1 subclass with overloading constructors that call the Shape constructors. Override Test1's calculate method. 3. Define a Member class with member data. Define Employee and Manager subclasses that inherit Member and have additional data. Create objects of each and print member data.
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1/ 1

Java Assignment 2

1. Define a class Point with two fields x and y each of type double. Also, define a method
distance(Point p1, Point p2) to calculate the distance between points p1 and p2 and return the
value in double. Use Math.sqrt( ) to calculate the square root.

2. A class Shape is defined with two overloading constructors in it. Another class Test1 is partially
defined which inherits the class Shape. The class Test1 should include two overloading
constructors as appropriate for some object instantiation. You should define the constructors
using the super class constructors. Also, override the method calculate() in Test1 to calculate the
volume of a Shape.

3. Create a class named 'Member' having the following members: Name, Age, Phone number,
Address, Salary. It also has a method named 'printSalary' which prints the salary of the
members. Two classes 'Employee' and 'Manager' inherits the 'Member' class. The 'Employee'
and 'Manager' classes have data members 'specialization' and 'department' respectively. Now,
assign name, age, phone number, address and salary to an employee and a manager by making
an object of both of these classes and print the same.

4. Create a class named 'Shape' with a method to print "This is shape". Then create two other
classes named 'Rectangle', 'Circle' inheriting the Shape class, both having a method to print
"This is rectangular shape" and "This is circular shape" respectively. Create a subclass 'Square' of
'Rectangle having a method to print "Square is a rectangle". Now call the method of 'Shape' and
'Rectangle' class by the object of 'Square' class.

5. Write a program to find the roots of a quadratic equation using interface and packages.
● Declare an interface in package Quad1
● Declare another package Quad2 and implement the interface.

6. Write a Program to generate Fibonacci Series by using Constructor to initialize the Data
Members.

7. Define a Interface Polygon in package pack1. create a class triangle from Polygon in package
pack2, override method to calculate area of the triangle and raise an exception if it is an
equilateral triangle. Note : Exception has to be defined in package pack3.

8. Create a class Student with attributes roll no, name, age and course. Initialize values through
parameterized constructor. If age of student is not in between 15 and 21 then generate user-
defined exception "AgeNotWithinRangeException". If name contains numbers or special symbols
raise exception "NameNotValidException". Define the two exception classes.

9. Create a Student class with data members Rollno, Name, marks in subjects. Include methods to
compute average. Raise an exception if the student has more than 2 backlogs.

10. Program to implement all String methods on an Input String.

You might also like