Java Lab Manual
Java Lab Manual
CourseCode BCS306A
CourseObjectives:
1. To learn primitive constructs JAVA programming language.
2. To understand Object Oriented Programming Features of JAVA.
3. To gain knowledge on: packages, multithreaded programing and exceptions.
CourseOutcomes
1. Demonstrate proficiency in writing simple programs involving branching and looping structures.
2. Design a class involving data members and methods for the given scenario.
3. Apply the concepts of inheritance and interfaces in solving real world problems.
4. Use the concept of packages and exception handling in solving complex problem
5. Apply concepts of multithreading, autoboxing and enumerations in program development
LaboratoryRequirement
SoftwareRequirement:
OperatingSystem:Windows-10/8/7(64Bit)
JDK1.9
Sl.no Progams
Develop a JAVA program to add TWO matrices of suitable order N (The value of N should be
1
read from command line arguments).
Develop a stack class to hold a maximum of 10 integers with suitable methods. Develop a
2
JAVA main method to illustrate Stack operations.
3 A class called Employee, which models an employee with an ID, name and salary, is designed
as shown in the following class diagram. The method raiseSalary (percent) increases the salary
by thegiven percentage. Develop the Employee class and suitable main method for
demonstration.
1. A class called MyPoint, which models a 2D point with x and y coordinates, is designed as
4
follows:
● Two instance variables x (int) and y (int).
● A default (or "no-arg") constructor that construct a point at the default location of (0, 0).
● A overloaded constructor that constructs a point with the given x and y coordinates.
● A method setXY() to set both x and y.
● A method getXY() which returns the x and y in a 2-element int array.
● A toString() method that returns a string description of the instance in the format "(x, y)".
● A method called distance(int x, int y) that returns the distance from this point to another point
at the
given (x, y) coordinates
● An overloaded distance(MyPoint another) that returns the distance from this point to the
given
MyPoint instance (called another)
● Another overloaded distance() method that returns the distance from this point to the origin
(0,0)
Develop the code for the class MyPoint. Also develop a JAVA program (called TestMyPoint)
to test all the methods defined in the class.
Develop a JAVA program to create a class named shape. Create three sub classes namely:
5
circle, triangle and square, each class has two member functions named draw () and erase ().
Demonstrate polymorphism concepts by developing suitable methods, defining member data
and main program.
10 Develop a JAVA program to create a package named mypack and import & implement it in a
suitable class.
Write a program to illustrate creation of threads using runnable class. (start method start each of
11
the newly created thread. Inside the run method there is sleep() for suspend the thread for 500
milliseconds)
12 Develop a program to create a class MyThread in this class a constructor, call the base class
constructor, using super and start the thread. The run method of the class starts after this. It can
be observed that both main thread and created child thread are executed concurrently.
}
}
System.out.println("Matrix after addition:");
for (int i = 0; i < p; i++)
{
// Initialize top-of-stack
Stack() {
tos = -1;
}
int pop() {
if (tos < 0) {
System.out.println("Stack underflow.");
return 0;
} else
return stck[tos--];
}
}
class Demo
{
public static void main(String[] args)
{
Stack st=new Stack();
for(int i=0;i<10;i++)
{
st.push(i);
}
for(int i=0;i<10;i++)
{
int x=st.pop();
System.out.println(x);
}
}
}
Output:
}
void printdetails()
{
System.out.println("id is "+id);
System.out.println("name is "+name);
System.out.println("the salary is "+salary);
}
public static void main(String[] args)
{
Employee e1=new Employee(1,"Vinutha",10000.00);
System.out.println("Employee details before salary before
rise is");
e1.printdetails();
e1.raiseSalary(25);
System.out.println("Employee details after salary rise is
");
}
}
Output:
triangle and square, each class has two member functions named draw () and erase ().
Demonstrate polymorphism concepts by developing suitable methods, defining member data and
main program.
class Shape {
public void draw() {
System.out.println("Drawing a shape");
}
@Override
publicvoiderase() {
System.out.println("Erasing the square");
}
}
publicclassMain {
publicstaticvoidmain(String[] args) {
Shapeshape=newShape();
Circlecircle=newCircle();
Triangletriangle=newTriangle();
Squaresquare=newSquare();
double calculateArea() {
return Math.PI * dim1 * dim1;
}
double calculatePerimeter() {
return 2 * Math.PI * dim1;
}
}
double calculateArea() {
return 0.5 * dim1 * dim2;
}
double calculatePerimeter() {
return dim1 + dim2 + Math.sqrt(dim1 * dim1 + dim2 * dim2);
}
}
@Override
public void resizeWidth(int width) {
this.width = width;
}
@Override
public void resizeHeight(int height) {
this.height = height;
}
rectangle.resizeWidth(15);
rectangle.resizeHeight(8);
System.out.println("\nResized Dimensions:");
rectangle.display();
}
}
Output:
class Inner {
void display() {
System.out.println("Inner - Display method");
}
}
}
class DivisionByZeroExample {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
try {
System.out.print("Enter numerator: ");
int numerator = scanner.nextInt();
if (denominator == 0) {
throw new RuntimeException("Division by zero is not allowed.");
}
} catch (RuntimeException e) {
System.err.println("Error: " + e.getMessage());
} finally {
System.out.println("Finally block executed.");
scanner.close();
}
}
}
Output
Output
thread1.start();
thread2.start();
}
}
Output
class ThreadExample {
public static void main(String[] args) {
new MyThread("ChildThread").start();