Interface Program in Java | ISC 2020

Channel:
Subscribers:
1,540
Published on ● Video Link: https://www.youtube.com/watch?v=1U32FBbuzm8



Duration: 6:17
27 views
0


Interface Program in Java | ISC 2020

An interface Data is defined with a data member and a method volume() which returns the volume of the implementing shape. A super class Base has been defined to contain the radius of a geometrical shape. Define a sub class CalVol which uses the properties of the interface Data and the class Base and calculates the volume of a cylinder.

The details of the members of the interface and both the classes are given below:

Interface name: Data
Data member:
double pi: initialize pi = 3.142
Member functions/methods:
double volume()

Class name: Base
Data member/instance variable:
rad: to store the radius in decimal
Member functions/methods:
Base(...): parameterized constructor to initialize the data member.
void show(): displays the radius with an appropriate message.

Class name: CalVol
Data member/instance variable:
CalVol(...): parameterized constructor to initialize the data members of both the classes.
double volume(): calculates the volume of a cylinder by using the formula (pi × radius × radius × height)
void show(): displays the data members of both the classes and the volume of the cylinder with appropriate message.

Assume that the interface Data and the super class Base has been defined. Using the concept of inheritance, specify the class CalVol giving the details of the constructor, double volume() and void show.

The interface, super class, main function and algorithm need not be written.

#interface #java #isc #computerscience #inheritance







Tags:
robin sir
interface in java
java interface
java interface program
inheritance program in java
interface
inheritance
java
computer science
isc