ankit java exp3
ankit java exp3
EXPERIMENT - 3
Student Name: Ankit Kumar UID:23BEC10026
Branch: Electronics and Communications Section/Group:23BEC-1(A)
Semester: 3th Date of Performance:07-08-2024
Subject Name: JAVA PROGRAMMING
1. Aim of the practical: Write a program to learn different types of inheritance in java.
Code:
class Animal {
void eat() {
System.out.println("I am eating ..... ");
}
}
Output -
Single Inheritance.....
I am eating......
I am barking......
Multilevel Inheritance.....
I am eating......
We live in various habitat.....
I am roaring.......
University Institute of Engineering
Department of Electronics & Communication Engineering
Hierarchical Inheritance.....
I am eating......
I am flying.......
I am speaking.......